pub struct CheckpointInfo {
pub number: usize,
pub commit_id: ObjectId,
pub file_count: usize,
pub timestamp: DateTime<Utc>,
pub message: String,
}Expand description
Information about a single checkpoint.
Fields§
§number: usize§commit_id: ObjectId§file_count: usize§timestamp: DateTime<Utc>§message: StringTrait Implementations§
Source§impl Clone for CheckpointInfo
impl Clone for CheckpointInfo
Source§fn clone(&self) -> CheckpointInfo
fn clone(&self) -> CheckpointInfo
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 CheckpointInfo
impl RefUnwindSafe for CheckpointInfo
impl Send for CheckpointInfo
impl Sync for CheckpointInfo
impl Unpin for CheckpointInfo
impl UnwindSafe for CheckpointInfo
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