pub struct OptionsSlurper<'dec> { /* private fields */ }
Expand description
Slurps a set of options based on a given OptionDeclarations
Implementations§
Source§impl<'dec> OptionsSlurper<'dec>
impl<'dec> OptionsSlurper<'dec>
pub fn new(decs: &'dec OptionDeclarations) -> OptionsSlurper<'dec>
Sourcepub fn slurp<S>(
self,
args_slice: &[S],
) -> Result<(WeakOptionsDecoder, usize), OptionsSlurperError>
pub fn slurp<S>( self, args_slice: &[S], ) -> Result<(WeakOptionsDecoder, usize), OptionsSlurperError>
From a slice of strings, parses left from right. Slurped arguments are returned in a form of hashmap of strings along with the number of slurped values
Auto Trait Implementations§
impl<'dec> Freeze for OptionsSlurper<'dec>
impl<'dec> !RefUnwindSafe for OptionsSlurper<'dec>
impl<'dec> !Send for OptionsSlurper<'dec>
impl<'dec> !Sync for OptionsSlurper<'dec>
impl<'dec> Unpin for OptionsSlurper<'dec>
impl<'dec> !UnwindSafe for OptionsSlurper<'dec>
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> InstanceOf for T
impl<T> InstanceOf for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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