enum CachingResult {
Caching {
ready: Event,
},
Cached {
result: Result<()>,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for CachingResult
impl !RefUnwindSafe for CachingResult
impl Send for CachingResult
impl Sync for CachingResult
impl Unpin for CachingResult
impl !UnwindSafe for CachingResult
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