[][src]Struct byte_unit::AdjustedByte

pub struct AdjustedByte { /* fields omitted */ }

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 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));

impl Eq for AdjustedByte[src]

impl Debug for AdjustedByte[src]

impl Display for AdjustedByte[src]

impl Copy for AdjustedByte[src]

impl Clone for AdjustedByte[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]