Struct jj_lib::settings::HumanByteSize
source · pub struct HumanByteSize(pub u64);
Expand description
A size in bytes optionally formatted/serialized with binary prefixes
Tuple Fields§
§0: u64
Trait Implementations§
source§impl Clone for HumanByteSize
impl Clone for HumanByteSize
source§fn clone(&self) -> HumanByteSize
fn clone(&self) -> HumanByteSize
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HumanByteSize
impl Debug for HumanByteSize
source§impl<'de> Deserialize<'de> for HumanByteSize
impl<'de> Deserialize<'de> for HumanByteSize
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for HumanByteSize
impl Display for HumanByteSize
source§impl Ord for HumanByteSize
impl Ord for HumanByteSize
source§fn cmp(&self, other: &HumanByteSize) -> Ordering
fn cmp(&self, other: &HumanByteSize) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for HumanByteSize
impl PartialEq for HumanByteSize
source§fn eq(&self, other: &HumanByteSize) -> bool
fn eq(&self, other: &HumanByteSize) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for HumanByteSize
impl PartialOrd for HumanByteSize
source§fn partial_cmp(&self, other: &HumanByteSize) -> Option<Ordering>
fn partial_cmp(&self, other: &HumanByteSize) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for HumanByteSize
impl Eq for HumanByteSize
impl StructuralPartialEq for HumanByteSize
Auto Trait Implementations§
impl Freeze for HumanByteSize
impl RefUnwindSafe for HumanByteSize
impl Send for HumanByteSize
impl Sync for HumanByteSize
impl Unpin for HumanByteSize
impl UnwindSafe for HumanByteSize
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more