Trait checkito::prove::Prove

source ·
pub trait Prove: 'static {
    // Required methods
    fn prove(&self) -> bool;
    fn is(&self, other: &dyn Any) -> bool;
}

Required Methods§

source

fn prove(&self) -> bool

source

fn is(&self, other: &dyn Any) -> bool

Implementations on Foreign Types§

source§

impl Prove for bool

source§

fn prove(&self) -> bool

source§

fn is(&self, other: &dyn Any) -> bool

source§

impl<T: 'static, E: 'static> Prove for Result<T, E>

source§

fn prove(&self) -> bool

source§

fn is(&self, other: &dyn Any) -> bool

Implementors§