pub enum ScanStorageResult<R, B> {
Cached(Vec<R>),
Stored(B),
}
Variants§
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§
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