pub enum BoundOutcome<R> {
Run(BoundInvocation<R>),
Help(ResolvedHelp),
Version(ResolvedVersion),
Docs(ResolvedDocs),
}Expand description
What an argv resolved to, with the run branch already bound to its handler.
Variants§
Trait Implementations§
Source§impl<R> Debug for BoundOutcome<R>
impl<R> Debug for BoundOutcome<R>
Auto Trait Implementations§
impl<R> Freeze for BoundOutcome<R>where
BoundInvocation<R>: Freeze,
impl<R> RefUnwindSafe for BoundOutcome<R>where
BoundInvocation<R>: RefUnwindSafe,
impl<R> Send for BoundOutcome<R>where
BoundInvocation<R>: Send,
impl<R> Sync for BoundOutcome<R>where
BoundInvocation<R>: Sync,
impl<R> Unpin for BoundOutcome<R>where
BoundInvocation<R>: Unpin,
impl<R> UnsafeUnpin for BoundOutcome<R>where
BoundInvocation<R>: UnsafeUnpin,
impl<R> UnwindSafe for BoundOutcome<R>where
BoundInvocation<R>: 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