Enum parallel_disk_usage::bytes_format::parsed_value::ParsedValue [−][src]
pub enum ParsedValue {
Small {
value: u16,
},
Big {
coefficient: f32,
unit: char,
scale: u64,
exponent: usize,
},
}Expand description
Return value of Formatter::parse_value.
Variants
When input value is less than scale_base.
Fields of Small
value: u16Input value that is less than scale_base.
When input value is greater than scale_base.
Fields of Big
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ParsedValue
impl Send for ParsedValue
impl Sync for ParsedValue
impl Unpin for ParsedValue
impl UnwindSafe for ParsedValue
Blanket Implementations
Mutably borrows from an owned value. Read more
Apply f to self. Read more
Apply f to &self. Read more
Apply f to &mut self. Read more
Apply f to &self where f takes a single parameter of type Param
and Self implements trait AsRef<Param>. Read more
Apply f to &mut self where f takes a single parameter of type Param
and Self implements trait AsMut<Param>. Read more
Apply f to &self where f takes a single parameter of type Param
and Self implements trait Deref<Param>. Read more
Apply f to &mut self where f takes a single parameter of type Param
and Self implements trait DerefMut<Param>. Read more
Apply f to &self where f takes a single parameter of type Param
and Self implements trait Deref<Param>. Read more
Apply f to &mut self where f takes a single parameter of type Param
and Self implements trait DerefMut<Param>. Read more