Trait float_format::BitPatternExt
source · [−]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 to_bin_string(&self) -> String;
fn into_bin_string(self) -> String;
}