Trait sp_runtime::traits::Clear[][src]

pub trait Clear {
    fn is_clear(&self) -> bool;
fn clear() -> Self; }
[]

Trait for things that can be clear (have no bits set). For numeric types, essentially the same as Zero.

Required methods

fn is_clear(&self) -> bool[src][]

True iff no bits are set.

fn clear() -> Self[src][]

Return the value of Self that is clear.

Implementors

impl<T: Default + Eq + PartialEq> Clear for T[src][+]