pub enum CommandResult<H> {
Completed,
Captured(Vec<u8>),
Background(H),
}Variants§
Auto Trait Implementations§
impl<H> Freeze for CommandResult<H>where
H: Freeze,
impl<H> RefUnwindSafe for CommandResult<H>where
H: RefUnwindSafe,
impl<H> Send for CommandResult<H>where
H: Send,
impl<H> Sync for CommandResult<H>where
H: Sync,
impl<H> Unpin for CommandResult<H>where
H: Unpin,
impl<H> UnwindSafe for CommandResult<H>where
H: 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