pub struct Revision {
pub rev: u64,
pub node: String,
pub tags: String,
pub branch: String,
pub author: String,
pub desc: String,
pub date: DateTime<Utc>,
}
Fields§
§rev: u64
§node: String
§branch: String
§desc: String
§date: DateTime<Utc>
Trait Implementations§
impl StructuralPartialEq for Revision
Auto Trait Implementations§
impl Freeze for Revision
impl RefUnwindSafe for Revision
impl Send for Revision
impl Sync for Revision
impl Unpin for Revision
impl UnwindSafe for Revision
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more