[−][src]Struct byte_unit::AdjustedByte
Generated from the get_appropriate_unit
and get_adjusted_unit
methods of a Byte
object.
Implementations
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!("1.555 MB", result);
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let byte = Byte::from_unit(1555.2f64, ByteUnit::B).unwrap(); let result = byte.get_adjusted_unit(ByteUnit::B).format(3); assert_eq!("1555 B", result);
pub fn get_value(&self) -> f64
[src]
pub fn get_unit(&self) -> ByteUnit
[src]
pub fn get_byte(&self) -> Byte
[src]
Create a new Byte
object from this AdjustedByte
object. Accuracy should be taken care of.
Examples
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let byte = Byte::from_str("123456789123456").unwrap(); let adjusted_byte = byte.get_adjusted_unit(ByteUnit::GB); assert_eq!(123456.789123456, adjusted_byte.get_value()); let byte = adjusted_byte.get_byte(); let adjusted_byte = byte.get_adjusted_unit(ByteUnit::GB); assert_eq!(123456.789123, adjusted_byte.get_value());
Trait Implementations
impl Clone for AdjustedByte
[src]
fn clone(&self) -> AdjustedByte
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for AdjustedByte
[src]
impl Debug for AdjustedByte
[src]
impl Display for AdjustedByte
[src]
impl Eq for AdjustedByte
[src]
impl Ord for AdjustedByte
[src]
fn cmp(&self, other: &AdjustedByte) -> Ordering
[src]
Deal with the logical numeric comparation.
Examples
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let byte1 = Byte::from_unit(1024f64, ByteUnit::KiB).unwrap(); let byte2 = Byte::from_unit(1025f64, ByteUnit::KiB).unwrap(); assert!(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(1.01f64, ByteUnit::MiB).unwrap(); assert!(byte1.get_appropriate_unit(true) < byte2.get_appropriate_unit(false));
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[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) -> bool
1.0.0[src]
impl PartialOrd<AdjustedByte> for AdjustedByte
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
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> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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,
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> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,