Enum message::CounterCommandChoice
source · [−]pub enum CounterCommandChoice<IncrementT, GetCountT> {
Increment(IncrementT),
GetCount(GetCountT),
}
Variants
Increment(IncrementT)
GetCount(GetCountT)
Trait Implementations
Auto Trait Implementations
impl<IncrementT, GetCountT> RefUnwindSafe for CounterCommandChoice<IncrementT, GetCountT> where
GetCountT: RefUnwindSafe,
IncrementT: RefUnwindSafe,
impl<IncrementT, GetCountT> Send for CounterCommandChoice<IncrementT, GetCountT> where
GetCountT: Send,
IncrementT: Send,
impl<IncrementT, GetCountT> Sync for CounterCommandChoice<IncrementT, GetCountT> where
GetCountT: Sync,
IncrementT: Sync,
impl<IncrementT, GetCountT> Unpin for CounterCommandChoice<IncrementT, GetCountT> where
GetCountT: Unpin,
IncrementT: Unpin,
impl<IncrementT, GetCountT> UnwindSafe for CounterCommandChoice<IncrementT, GetCountT> where
GetCountT: UnwindSafe,
IncrementT: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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