pub trait ToBool {
    // Required method
    fn to_bool(&self) -> bool;
}

Required Methods§

source

fn to_bool(&self) -> bool

Implementations on Foreign Types§

source§

impl ToBool for &u8

source§

fn to_bool(&self) -> bool

source§

impl ToBool for u8

source§

fn to_bool(&self) -> bool

Implementors§