pub enum Action<Item> {
Send(Item),
IsFull,
IsEmpty,
}
Variants
Send(Item)
IsFull
IsEmpty
Auto Trait Implementations
impl<Item> RefUnwindSafe for Action<Item>where
Item: RefUnwindSafe,
impl<Item> Send for Action<Item>where
Item: Send,
impl<Item> Sync for Action<Item>where
Item: Sync,
impl<Item> Unpin for Action<Item>where
Item: Unpin,
impl<Item> UnwindSafe for Action<Item>where
Item: UnwindSafe,
Blanket Implementations
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