pub enum Kind<A> {
Read(A),
Write(A),
CacheOp(A),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<A> Freeze for Kind<A>where
A: Freeze,
impl<A> RefUnwindSafe for Kind<A>where
A: RefUnwindSafe,
impl<A> Send for Kind<A>where
A: Send,
impl<A> Sync for Kind<A>where
A: Sync,
impl<A> Unpin for Kind<A>where
A: Unpin,
impl<A> UnwindSafe for Kind<A>where
A: 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