[−][src]Struct byte_unit::AdjustedByte
Generated from the get_appropriate_unit and get_adjusted_unit methods of a Byte object.
Methods
impl AdjustedByte[src]
pub fn format(&self, fractional_digits: usize) -> String[src]
Format the AdjustedByte object to string.
Examples
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let byte = Byte::from_unit(1555f64, ByteUnit::KB).unwrap(); let result = byte.get_appropriate_unit(false).format(3); assert_eq!(result, "1.555 MB");
pub fn get_value(&self) -> f64[src]
pub fn get_unit(&self) -> ByteUnit[src]
Trait Implementations
impl Display for AdjustedByte[src]
impl Debug for AdjustedByte[src]
impl PartialEq<AdjustedByte> for AdjustedByte[src]
fn eq(&self, other: &AdjustedByte) -> bool[src]
Deal with the logical numeric equivalent.
Examples
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let byte1 = Byte::from_unit(1024f64, ByteUnit::KiB).unwrap(); let byte2 = Byte::from_unit(1024f64, ByteUnit::KiB).unwrap(); assert_eq!(byte1.get_appropriate_unit(false), byte2.get_appropriate_unit(true));
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let byte1 = Byte::from_unit(1024f64, ByteUnit::KiB).unwrap(); let byte2 = Byte::from_unit(1f64, ByteUnit::MiB).unwrap(); assert_eq!(byte1.get_appropriate_unit(true), byte2.get_appropriate_unit(false));
#[must_use]
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
This method tests for !=.
impl Eq for AdjustedByte[src]
impl Copy for AdjustedByte[src]
impl Clone for AdjustedByte[src]
fn clone(&self) -> AdjustedByte[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
Auto Trait Implementations
Blanket Implementations
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,