Struct RangedU64ValueParser
pub struct RangedU64ValueParser<T: TryFrom<u64> = u64> { /* private fields */ }
Parse number that fall within a range of values
Example
Usage:
# use clap_builder as clap;
let mut cmd = new
.arg;
let m = cmd.try_get_matches_from_mut.unwrap;
let port: u64 = *m.get_one
.expect;
assert_eq!;
Semantics:
# use clap_builder as clap;
# use OsStr;
# use TypedValueParser;
# let cmd = new;
# let arg = None;
let value_parser = new.range;
assert!;
assert!;
assert!;
assert!;
assert!;
assert_eq!;
assert_eq!;
Implementations
impl<T: TryFrom<u64>> RangedU64ValueParser<T>
fn new() -> SelfSelect full range of
u64fn range<B: RangeBounds<u64>>(self, range: B) -> SelfNarrow the supported range
Trait Implementations
impl<T: Clone + TryFrom<u64>> Clone for RangedU64ValueParser<T>
fn clone(&self) -> RangedU64ValueParser<T>
impl<T: Copy + TryFrom<u64>> Copy for RangedU64ValueParser<T>
impl<T: Debug + TryFrom<u64>> Debug for RangedU64ValueParser<T>
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl<T: TryFrom<u64> + Clone + Send + Sync + 'static> TypedValueParser for RangedU64ValueParser<T>
where
<T as TryFrom<u64>>::Error: Send + Sync + 'static + Error + ToString,
type Value = T;fn parse_ref(&self, cmd: &Command, arg: Option<&Arg>, raw_value: &OsStr) -> Result<Self::Value, Error>
impl<T: TryFrom<u64>> Default for RangedU64ValueParser<T>
fn default() -> Self
impl<T: TryFrom<u64>, B: RangeBounds<u64>> From<B> for RangedU64ValueParser<T>
fn from(range: B) -> Self
Auto Trait Implementations
impl<T> Freeze for RangedU64ValueParser<T>
where
PhantomData<T>: Freeze,
impl<T> RefUnwindSafe for RangedU64ValueParser<T>
where
PhantomData<T>: RefUnwindSafe,
impl<T> Send for RangedU64ValueParser<T>
where
PhantomData<T>: Send,
impl<T> Sync for RangedU64ValueParser<T>
where
PhantomData<T>: Sync,
impl<T> Unpin for RangedU64ValueParser<T>
where
PhantomData<T>: Unpin,
impl<T> UnsafeUnpin for RangedU64ValueParser<T>
where
PhantomData<T>: UnsafeUnpin,
impl<T> UnwindSafe for RangedU64ValueParser<T>
where
PhantomData<T>: UnwindSafe,
Blanket Implementations
impl<I> IntoResettable<ValueParser> for RangedU64ValueParser<T>
where
I: Into<ValueParser>,
fn into_resettable(self) -> Resettable<ValueParser>
impl<T> Any for RangedU64ValueParser<T>
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for RangedU64ValueParser<T>
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for RangedU64ValueParser<T>
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for RangedU64ValueParser<T>
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for RangedU64ValueParser<T>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for RangedU64ValueParser<T>
where
T: Clone,
type Owned = T;fn to_owned(&self) -> Tfn clone_into(&self, target: &mut T)
impl<T, U> Into<U> for RangedU64ValueParser<T>
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for RangedU64ValueParser<T>
where
U: Into<T>,
type Error = Infallible;fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for RangedU64ValueParser<T>
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>