[][src]Trait types::Conds

pub trait Conds {
    fn is_i8(self) -> bool;
fn is_i16(self) -> bool;
fn is_i32(self) -> bool;
fn is_i64(self) -> bool;
fn is_i128(self) -> bool;
fn is_u8(self) -> bool;
fn is_u16(self) -> bool;
fn is_u32(self) -> bool;
fn is_u64(self) -> bool;
fn is_u128(self) -> bool;
fn is_f32(self) -> bool;
fn is_f64(self) -> bool;
fn is_isize(self) -> bool;
fn is_usize(self) -> bool;
fn is_bool(self) -> bool;
fn is_char(self) -> bool;
fn is_str(self) -> bool;
fn is_string(self) -> bool; }

Type condition Sets

Note: prefer to use ty_cond, not this.

Required methods

fn is_i8(self) -> bool

fn is_i16(self) -> bool

fn is_i32(self) -> bool

fn is_i64(self) -> bool

fn is_i128(self) -> bool

fn is_u8(self) -> bool

fn is_u16(self) -> bool

fn is_u32(self) -> bool

fn is_u64(self) -> bool

fn is_u128(self) -> bool

fn is_f32(self) -> bool

fn is_f64(self) -> bool

fn is_isize(self) -> bool

fn is_usize(self) -> bool

fn is_bool(self) -> bool

fn is_char(self) -> bool

fn is_str(self) -> bool

fn is_string(self) -> bool

Loading content...

Implementors

impl<T: Sized + Any> Conds for T[src]

Loading content...