[][src]Trait eosio_cdt::Check

pub trait Check {
    type Output;
    fn check(self, msg: &str) -> Self::Output;
}

Associated Types

type Output

Loading content...

Required methods

fn check(self, msg: &str) -> Self::Output

Loading content...

Implementations on Foreign Types

impl<T, E> Check for Result<T, E>[src]

type Output = T

impl<T> Check for Option<T>[src]

type Output = T

Loading content...

Implementors

impl Check for bool[src]

type Output = Self

Loading content...