LoadFromStr

Trait LoadFromStr 

Source
pub trait LoadFromStr: Sized {
    // Required method
    fn from_str(s: &str) -> Result<Self>;
}
Expand description

our from_str can throw errors

Required Methods§

Source

fn from_str(s: &str) -> Result<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§