pub struct SubcommandDetector { /* private fields */ }Expand description
Subcommand Detector - Recursively detects CLI subcommands
Implementations§
Source§impl SubcommandDetector
impl SubcommandDetector
Sourcepub fn with_max_depth(max_depth: u8) -> Result<Self>
pub fn with_max_depth(max_depth: u8) -> Result<Self>
Create a new subcommand detector with custom max depth
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SubcommandDetector
impl RefUnwindSafe for SubcommandDetector
impl Send for SubcommandDetector
impl Sync for SubcommandDetector
impl Unpin for SubcommandDetector
impl UnwindSafe for SubcommandDetector
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more