pub struct FullSnapshotArchiveInfo(_);
Expand description
Information about a full snapshot archive: its path, slot, hash, and archive format
Implementations§
source§impl FullSnapshotArchiveInfo
impl FullSnapshotArchiveInfo
sourcepub fn new_from_path(path: PathBuf) -> Result<Self>
pub fn new_from_path(path: PathBuf) -> Result<Self>
Parse the path to a full snapshot archive and return a new FullSnapshotArchiveInfo
Trait Implementations§
source§impl Clone for FullSnapshotArchiveInfo
impl Clone for FullSnapshotArchiveInfo
source§fn clone(&self) -> FullSnapshotArchiveInfo
fn clone(&self) -> FullSnapshotArchiveInfo
Returns a copy 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 moresource§impl Debug for FullSnapshotArchiveInfo
impl Debug for FullSnapshotArchiveInfo
source§impl Ord for FullSnapshotArchiveInfo
impl Ord for FullSnapshotArchiveInfo
source§impl PartialEq<FullSnapshotArchiveInfo> for FullSnapshotArchiveInfo
impl PartialEq<FullSnapshotArchiveInfo> for FullSnapshotArchiveInfo
source§fn eq(&self, other: &FullSnapshotArchiveInfo) -> bool
fn eq(&self, other: &FullSnapshotArchiveInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<FullSnapshotArchiveInfo> for FullSnapshotArchiveInfo
impl PartialOrd<FullSnapshotArchiveInfo> for FullSnapshotArchiveInfo
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for FullSnapshotArchiveInfo
impl StructuralEq for FullSnapshotArchiveInfo
impl StructuralPartialEq for FullSnapshotArchiveInfo
Auto Trait Implementations§
impl RefUnwindSafe for FullSnapshotArchiveInfo
impl Send for FullSnapshotArchiveInfo
impl Sync for FullSnapshotArchiveInfo
impl Unpin for FullSnapshotArchiveInfo
impl UnwindSafe for FullSnapshotArchiveInfo
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.