pub enum Outcome<Rs = Never> {
Reply(Rs),
NoReply,
Break,
}Variants§
Auto Trait Implementations§
impl<Rs> Freeze for Outcome<Rs>where
Rs: Freeze,
impl<Rs> RefUnwindSafe for Outcome<Rs>where
Rs: RefUnwindSafe,
impl<Rs> Send for Outcome<Rs>where
Rs: Send,
impl<Rs> Sync for Outcome<Rs>where
Rs: Sync,
impl<Rs> Unpin for Outcome<Rs>where
Rs: Unpin,
impl<Rs> UnwindSafe for Outcome<Rs>where
Rs: UnwindSafe,
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more