[−][src]Struct byte_unit::Byte
Represent the n-bytes data. Use associated functions: from_unit, from_bytes, from_str, 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_str<S: AsRef<str>>(s: 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_str("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_str("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_str("8 B").unwrap(); // 8 bytes assert_eq!(result.get_bytes(), 8u128);
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8").unwrap(); // 8 bytes assert_eq!(result.get_bytes(), 8u128);
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8 b").unwrap(); // 8 bytes assert_eq!(result.get_bytes(), 8u128);
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8 kb").unwrap(); // 8K bytes assert_eq!(result.get_bytes(), 8000u128);
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8 kib").unwrap(); // 8Ki bytes assert_eq!(result.get_bytes(), 8192u128);
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("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_str("123KiB").unwrap(); let result = byte.get_bytes(); assert_eq!(result, 125952);
extern crate byte_unit; use byte_unit::Byte; let byte = Byte::from_str("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_str("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_str("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_str("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_str("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 Display for Byte[src]
impl Debug for Byte[src]
impl PartialEq<Byte> for Byte[src]
impl Eq for Byte[src]
impl Ord for Byte[src]
fn cmp(&self, other: &Byte) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self[src]
clamp)Restrict a value to a certain interval. Read more
impl PartialOrd<Byte> for Byte[src]
fn partial_cmp(&self, other: &Byte) -> Option<Ordering>[src]
fn lt(&self, other: &Byte) -> bool[src]
fn le(&self, other: &Byte) -> bool[src]
fn gt(&self, other: &Byte) -> bool[src]
fn ge(&self, other: &Byte) -> bool[src]
impl Copy for Byte[src]
impl Clone for Byte[src]
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,