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>
impl<R> RefUnwindSafe for BoundOutcome<R>
impl<R> Send for BoundOutcome<R>
impl<R> Sync for BoundOutcome<R>
impl<R> Unpin for BoundOutcome<R>
impl<R> UnsafeUnpin for BoundOutcome<R>
impl<R> UnwindSafe for BoundOutcome<R>
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