InAbler

Trait InAbler 

Source
pub trait InAbler {
    type Error;

    // Required method
    fn in_abler<const STRICT: bool>(self) -> Result<Abler, Self::Error>;
}

Required Associated Types§

Required Methods§

Source

fn in_abler<const STRICT: bool>(self) -> Result<Abler, Self::Error>

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.

Implementations on Foreign Types§

Source§

impl InAbler for &str

Source§

type Error = FromStr

Source§

fn in_abler<const STRICT: bool>(self) -> Result<Abler, Self::Error>

Source§

impl InAbler for char

Source§

type Error = FromChar

Source§

fn in_abler<const STRICT: bool>(self) -> Result<Abler, Self::Error>

Source§

impl InAbler for u32

Source§

type Error = FromU32

Source§

fn in_abler<const STRICT: bool>(self) -> Result<Abler, Self::Error>

Implementors§