[][src]Struct byte_unit::Byte

pub struct Byte { /* fields omitted */ }

Represent the n-bytes data. Use associated functions: from_unit, from_bytes, from_string, to create the instance.

Methods

impl Byte[src]

pub fn from_unit(value: f64, unit: ByteUnit) -> Result<Byte, ByteError>[src]

Create a new Byte object from a specified value and a unit. Accuracy should be taken care of.

Examples

extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_unit(1500f64, ByteUnit::KB).unwrap();

assert_eq!(result.get_bytes(), 1500000u128);

pub fn from_bytes(bytes: u128) -> Byte[src]

Create a new Byte object from bytes.

Examples

extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_bytes(1500000u128);

assert_eq!(result.get_bytes(), 1500000u128);

pub fn from_string<S: AsRef<str>>(string: S) -> Result<Byte, ByteError>[src]

Create a new Byte object from string. Accuracy should be taken care of.

Examples

extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_string("123KiB").unwrap();

assert_eq!(result, Byte::from_unit(123f64, ByteUnit::KiB).unwrap());
extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_string("50.84 MB").unwrap();

assert_eq!(result, Byte::from_unit(50.84f64, ByteUnit::MB).unwrap());
extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_string("8 B").unwrap(); // 8 bytes

assert_eq!(result.get_bytes(), 8u128);
extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_string("8").unwrap(); // 8 bytes

assert_eq!(result.get_bytes(), 8u128);
extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_string("8 b").unwrap(); // 8 bytes

assert_eq!(result.get_bytes(), 8u128);
extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_string("8 kb").unwrap(); // 8K bytes

assert_eq!(result.get_bytes(), 8000u128);
extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_string("8 kib").unwrap(); // 8Ki bytes

assert_eq!(result.get_bytes(), 8192u128);
extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let result = Byte::from_string("8 k").unwrap(); // 8K bytes

assert_eq!(result.get_bytes(), 8000u128);

pub fn get_bytes(&self) -> u128[src]

Get bytes represented by a Byte object.

Examples

extern crate byte_unit;

use byte_unit::Byte;

let byte = Byte::from_string("123KiB").unwrap();

let result = byte.get_bytes();

assert_eq!(result, 125952);
extern crate byte_unit;

use byte_unit::Byte;

let byte = Byte::from_string("50.84 MB").unwrap();

let result = byte.get_bytes();

assert_eq!(result, 50840000);

pub fn get_appropriate_unit(&self, binary_multiples: bool) -> AdjustedByte[src]

Find the appropriate unit and value for Byte object. Accuracy should be taken care of.

Examples

extern crate byte_unit;

use byte_unit::Byte;

let byte = Byte::from_string("123KiB").unwrap();

let adjusted_byte = byte.get_appropriate_unit(false);

assert_eq!(adjusted_byte.to_string(), "125.95 KB");
extern crate byte_unit;

use byte_unit::Byte;

let byte = Byte::from_string("50.84 MB").unwrap();

let adjusted_byte = byte.get_appropriate_unit(true);

assert_eq!(adjusted_byte.to_string(), "48.48 MiB");

pub fn get_adjusted_unit(&self, unit: ByteUnit) -> AdjustedByte[src]

Adjust the unit and value for Byte object. Accuracy should be taken care of.

Examples

extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let byte = Byte::from_string("123KiB").unwrap();

let adjusted_byte = byte.get_adjusted_unit(ByteUnit::KB);

assert_eq!(adjusted_byte.to_string(), "125.95 KB");
extern crate byte_unit;

use byte_unit::{Byte, ByteUnit};

let byte = Byte::from_string("50.84 MB").unwrap();

let adjusted_byte = byte.get_adjusted_unit(ByteUnit::MiB);

assert_eq!(adjusted_byte.to_string(), "48.48 MiB");

Trait Implementations

impl Copy for Byte[src]

impl PartialEq<Byte> for Byte[src]

impl Ord for Byte[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Eq for Byte[src]

impl PartialOrd<Byte> for Byte[src]

impl Clone for Byte[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Byte[src]

impl Display for Byte[src]

impl Hash for Byte[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for Byte

impl Sync for Byte

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]