pub trait IntoResettable<T> {
    // Required method
    fn into_resettable(self) -> Resettable<T>;
}
Expand description

Convert to the intended resettable type

Required Methods§

fn into_resettable(self) -> Resettable<T>

Convert to the intended resettable type

Implementations on Foreign Types§

§

impl IntoResettable<char> for char

§

impl IntoResettable<ValueHint> for Option<ValueHint>

§

impl IntoResettable<char> for Option<char>

§

impl IntoResettable<usize> for Option<usize>

§

impl IntoResettable<Str> for Option<&'static str>

§

impl IntoResettable<OsStr> for Option<&'static str>

§

impl IntoResettable<ValueParser> for Option<ValueParser>

§

impl IntoResettable<StyledStr> for Option<&'static str>

§

impl IntoResettable<usize> for usize

§

impl IntoResettable<ArgAction> for Option<ArgAction>

Implementors§

§

impl IntoResettable<ArgAction> for ArgAction

§

impl IntoResettable<ValueHint> for ValueHint

§

impl<I> IntoResettable<Id> for Iwhere I: Into<Id>,

§

impl<I> IntoResettable<String> for Iwhere I: Into<String>,

§

impl<I> IntoResettable<OsStr> for Iwhere I: Into<OsStr>,

§

impl<I> IntoResettable<Str> for Iwhere I: Into<Str>,

§

impl<I> IntoResettable<StyledStr> for Iwhere I: Into<StyledStr>,

§

impl<I> IntoResettable<ValueParser> for Iwhere I: Into<ValueParser>,

§

impl<I> IntoResettable<ValueRange> for Iwhere I: Into<ValueRange>,

§

impl<T> IntoResettable<T> for Resettable<T>