Skip to main content

Extractable

Trait Extractable 

Source
pub trait Extractable {
    // Required method
    fn extract<T>(&mut self, value: &mut T) -> &mut Self
       where T: FromStr;
}

Required Methods§

Source

fn extract<T>(&mut self, value: &mut T) -> &mut Self
where T: FromStr,

Dyn Compatibility§

This trait is not dyn compatible.

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

Implementors§