Skip to main content

IntoResettable

Trait IntoResettable 

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

Convert to the intended resettable type

Required Methods§

Source

fn into_resettable(self) -> Resettable<T>

Convert to the intended resettable type

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl IntoResettable<ArgAction> for Option<ArgAction>

Source§

impl IntoResettable<ValueHint> for Option<ValueHint>

Source§

impl IntoResettable<char> for Option<char>

Source§

impl IntoResettable<char> for char

Source§

impl IntoResettable<usize> for Option<usize>

Source§

impl IntoResettable<usize> for usize

Source§

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

Source§

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

Source§

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

Source§

impl IntoResettable<ValueParser> for Option<ValueParser>

Implementors§