pub enum ScanStorageResult<R, B> {
Cached(Vec<R>),
Stored(B),
}
Variants
Cached(Vec<R>)
Stored(B)
Auto Trait Implementations
impl<R, B> RefUnwindSafe for ScanStorageResult<R, B>where
B: RefUnwindSafe,
R: RefUnwindSafe,
impl<R, B> Send for ScanStorageResult<R, B>where
B: Send,
R: Send,
impl<R, B> Sync for ScanStorageResult<R, B>where
B: Sync,
R: Sync,
impl<R, B> Unpin for ScanStorageResult<R, B>where
B: Unpin,
R: Unpin,
impl<R, B> UnwindSafe for ScanStorageResult<R, B>where
B: UnwindSafe,
R: UnwindSafe,
Blanket Implementations
sourceimpl<T> AbiExample for T
impl<T> AbiExample for T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more