pub enum SnapshotGetRepositoryParts<'b> {
None,
Repository(&'b [&'b str]),
}
Expand description
API parts for the Snapshot Get Repository API
Variants§
Implementations§
Trait Implementations§
Source§impl<'b> Clone for SnapshotGetRepositoryParts<'b>
impl<'b> Clone for SnapshotGetRepositoryParts<'b>
Source§fn clone(&self) -> SnapshotGetRepositoryParts<'b>
fn clone(&self) -> SnapshotGetRepositoryParts<'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 SnapshotGetRepositoryParts<'b>
impl<'b> Debug for SnapshotGetRepositoryParts<'b>
Source§impl<'b> PartialEq for SnapshotGetRepositoryParts<'b>
impl<'b> PartialEq for SnapshotGetRepositoryParts<'b>
Source§fn eq(&self, other: &SnapshotGetRepositoryParts<'b>) -> bool
fn eq(&self, other: &SnapshotGetRepositoryParts<'b>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'b> StructuralPartialEq for SnapshotGetRepositoryParts<'b>
Auto Trait Implementations§
impl<'b> Freeze for SnapshotGetRepositoryParts<'b>
impl<'b> RefUnwindSafe for SnapshotGetRepositoryParts<'b>
impl<'b> Send for SnapshotGetRepositoryParts<'b>
impl<'b> Sync for SnapshotGetRepositoryParts<'b>
impl<'b> Unpin for SnapshotGetRepositoryParts<'b>
impl<'b> UnwindSafe for SnapshotGetRepositoryParts<'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