[−][src]Struct byte_unit::Byte
Represent the n-bytes data. Use associated functions: from_unit
, from_bytes
, from_str
, to create the instance.
Implementations
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!(1500000, result.get_bytes());
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(1500000); assert_eq!(1500000, result.get_bytes());
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!(Byte::from_unit(123f64, ByteUnit::KiB).unwrap(), result);
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("50.84 MB").unwrap(); assert_eq!(Byte::from_unit(50.84f64, ByteUnit::MB).unwrap(), result);
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8 B").unwrap(); // 8 bytes assert_eq!(8, result.get_bytes());
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8").unwrap(); // 8 bytes assert_eq!(8, result.get_bytes());
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8 b").unwrap(); // 8 bytes assert_eq!(8, result.get_bytes());
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8 kb").unwrap(); // 8 kilobytes assert_eq!(8000, result.get_bytes());
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8 kib").unwrap(); // 8 kibibytes assert_eq!(8192, result.get_bytes());
extern crate byte_unit; use byte_unit::{Byte, ByteUnit}; let result = Byte::from_str("8 k").unwrap(); // 8 kilobytes assert_eq!(8000, result.get_bytes());
impl Byte
[src]
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!(125952, result);
extern crate byte_unit; use byte_unit::Byte; let byte = Byte::from_str("50.84 MB").unwrap(); let result = byte.get_bytes(); assert_eq!(50840000, result);
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!("125.95 KB", adjusted_byte.to_string());
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!("48.48 MiB", adjusted_byte.to_string());
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!("125.95 KB", adjusted_byte.to_string());
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!("48.48 MiB", adjusted_byte.to_string());
Trait Implementations
impl Clone for Byte
[src]
fn clone(&self) -> Byte
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Byte
[src]
impl Debug for Byte
[src]
impl Display for Byte
[src]
impl Eq for Byte
[src]
impl FromStr for Byte
[src]
type Err = ByteError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>
[src]
impl Hash for Byte
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Into<u128> for Byte
[src]
impl Ord for Byte
[src]
fn cmp(&self, other: &Byte) -> Ordering
[src]
#[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<Byte> for Byte
[src]
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 StructuralEq for Byte
[src]
impl StructuralPartialEq for Byte
[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>,