pub enum PrefetchCompletion {
Published,
Failed,
Discarded,
}Expand description
Publication disposition after an exact backend operation completes.
Variants§
Published
The completed copy became available to demand.
Failed
The backend failure was retained for demand.
Discarded
Cancellation made this exact completion stale.
Trait Implementations§
Source§impl Clone for PrefetchCompletion
impl Clone for PrefetchCompletion
Source§fn clone(&self) -> PrefetchCompletion
fn clone(&self) -> PrefetchCompletion
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 moreimpl Copy for PrefetchCompletion
Source§impl Debug for PrefetchCompletion
impl Debug for PrefetchCompletion
impl Eq for PrefetchCompletion
Source§impl PartialEq for PrefetchCompletion
impl PartialEq for PrefetchCompletion
impl StructuralPartialEq for PrefetchCompletion
Auto Trait Implementations§
impl Freeze for PrefetchCompletion
impl RefUnwindSafe for PrefetchCompletion
impl Send for PrefetchCompletion
impl Sync for PrefetchCompletion
impl Unpin for PrefetchCompletion
impl UnsafeUnpin for PrefetchCompletion
impl UnwindSafe for PrefetchCompletion
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