[][src]Trait cpt::args::FromArgs

pub trait FromArgs: Default {
    fn from_args(defaults: Option<&Self>) -> Result<Self, Box<dyn Error>>;
}

Required methods

fn from_args(defaults: Option<&Self>) -> Result<Self, Box<dyn Error>>

Loading content...

Implementors

impl<K, V, S> FromArgs for Cpt<K, V, S> where
    K: Hash + Eq + DeserializeOwned + Serialize + Debug,
    V: Hash + Eq + DeserializeOwned + Serialize + Debug + Into<StringOrVecString>,
    S: BuildHasher + Default + Debug
[src]

Loading content...