pub enum Action<Item> {
Send(Item),
IsFull,
IsEmpty,
Len,
}
Variants§
Auto Trait Implementations§
impl<Item> Freeze for Action<Item>where
Item: Freeze,
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§
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