pub enum SnapshotStatusParts<'b> {
None,
Repository(&'b str),
RepositorySnapshot(&'b str, &'b [&'b str]),
}
Expand description
API parts for the Snapshot Status API
Variants§
None
No parts
Repository(&'b str)
Repository
RepositorySnapshot(&'b str, &'b [&'b str])
Repository and Snapshot
Implementations§
Trait Implementations§
Source§impl<'b> Clone for SnapshotStatusParts<'b>
impl<'b> Clone for SnapshotStatusParts<'b>
Source§fn clone(&self) -> SnapshotStatusParts<'b>
fn clone(&self) -> SnapshotStatusParts<'b>
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 moreSource§impl<'b> Debug for SnapshotStatusParts<'b>
impl<'b> Debug for SnapshotStatusParts<'b>
Source§impl<'b> PartialEq for SnapshotStatusParts<'b>
impl<'b> PartialEq for SnapshotStatusParts<'b>
impl<'b> StructuralPartialEq for SnapshotStatusParts<'b>
Auto Trait Implementations§
impl<'b> Freeze for SnapshotStatusParts<'b>
impl<'b> RefUnwindSafe for SnapshotStatusParts<'b>
impl<'b> Send for SnapshotStatusParts<'b>
impl<'b> Sync for SnapshotStatusParts<'b>
impl<'b> Unpin for SnapshotStatusParts<'b>
impl<'b> UnwindSafe for SnapshotStatusParts<'b>
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