pub enum SnapshotOffer {
Declined,
Stored,
}Expand description
Result of offering a snapshot to a store.
Variants§
Declined
The snapshot store declined to store a snapshot.
Stored
The snapshot store stored the snapshot.
Trait Implementations§
Source§impl Clone for SnapshotOffer
impl Clone for SnapshotOffer
Source§fn clone(&self) -> SnapshotOffer
fn clone(&self) -> SnapshotOffer
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 Debug for SnapshotOffer
impl Debug for SnapshotOffer
Source§impl PartialEq for SnapshotOffer
impl PartialEq for SnapshotOffer
impl Copy for SnapshotOffer
impl Eq for SnapshotOffer
impl StructuralPartialEq for SnapshotOffer
Auto Trait Implementations§
impl Freeze for SnapshotOffer
impl RefUnwindSafe for SnapshotOffer
impl Send for SnapshotOffer
impl Sync for SnapshotOffer
impl Unpin for SnapshotOffer
impl UnwindSafe for SnapshotOffer
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