pub struct CheckpointFile {
pub path: String,
pub existed: bool,
pub snapshot_relpath: Option<String>,
}Fields§
§path: String§existed: bool§snapshot_relpath: Option<String>Trait Implementations§
Source§impl Clone for CheckpointFile
impl Clone for CheckpointFile
Source§fn clone(&self) -> CheckpointFile
fn clone(&self) -> CheckpointFile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CheckpointFile
impl Debug for CheckpointFile
Source§impl<'de> Deserialize<'de> for CheckpointFile
impl<'de> Deserialize<'de> for CheckpointFile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CheckpointFile
Source§impl PartialEq for CheckpointFile
impl PartialEq for CheckpointFile
Source§impl Serialize for CheckpointFile
impl Serialize for CheckpointFile
impl StructuralPartialEq for CheckpointFile
Auto Trait Implementations§
impl Freeze for CheckpointFile
impl RefUnwindSafe for CheckpointFile
impl Send for CheckpointFile
impl Sync for CheckpointFile
impl Unpin for CheckpointFile
impl UnsafeUnpin for CheckpointFile
impl UnwindSafe for CheckpointFile
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