pub trait BitPatternExt where
    Self: Sized
{ fn from_value<T>(val: T) -> Self
    where
        T: BitStore
; fn from_str(s: &str) -> Result<Self, Error>; fn from_bin_str(s: &str) -> Result<Self, Error>; fn from_oct_str(s: &str) -> Result<Self, Error>; fn from_hex_str(s: &str) -> Result<Self, Error>; fn is_all_one(&self) -> bool; fn is_all_zero(&self) -> bool; fn to_bin_string(&self) -> String; fn into_bin_string(self) -> String; }

Required Methods

Implementors