pub struct ChangeEntry {
pub id: u64,
pub kind: ChangeKind,
pub path: String,
pub author: String,
pub description: String,
pub timestamp_ms: u64,
}Expand description
A single structured change log entry.
Fields§
§id: u64§kind: ChangeKind§path: String§description: String§timestamp_ms: u64Trait Implementations§
Source§impl Clone for ChangeEntry
impl Clone for ChangeEntry
Source§fn clone(&self) -> ChangeEntry
fn clone(&self) -> ChangeEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ChangeEntry
impl RefUnwindSafe for ChangeEntry
impl Send for ChangeEntry
impl Sync for ChangeEntry
impl Unpin for ChangeEntry
impl UnsafeUnpin for ChangeEntry
impl UnwindSafe for ChangeEntry
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