pub enum Status<S> {
Accept(S),
Reject(S),
}
Variants§
Trait Implementations§
impl<S: Copy> Copy for Status<S>
impl<S> StructuralPartialEq for Status<S>
Auto Trait Implementations§
impl<S> Freeze for Status<S>where
S: Freeze,
impl<S> RefUnwindSafe for Status<S>where
S: RefUnwindSafe,
impl<S> Send for Status<S>where
S: Send,
impl<S> Sync for Status<S>where
S: Sync,
impl<S> Unpin for Status<S>where
S: Unpin,
impl<S> UnwindSafe for Status<S>where
S: 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