Struct byte_unit::Byte [−][src]
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 const 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 const 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][+]
impl Copy for Byte
[src]
impl Debug for Byte
[src][+]
impl Default for Byte
[src][+]
impl Display for Byte
[src][+]
impl Eq for Byte
[src]
impl From<AdjustedByte> for Byte
[src][+]
impl From<Byte> for u128
[src][+]
impl From<u128> for Byte
[src][+]
impl From<u16> for Byte
[src][+]
impl From<u32> for Byte
[src][+]
impl From<u64> for Byte
[src][+]
impl From<u8> for Byte
[src][+]
impl From<usize> for Byte
[src][+]
impl FromStr for Byte
[src][+]
impl Hash for Byte
[src][+]
impl Ord for Byte
[src][+]
impl PartialEq<Byte> for Byte
[src][+]
impl PartialOrd<Byte> for Byte
[src][+]
impl StructuralEq for Byte
[src]
impl StructuralPartialEq for Byte
[src]
impl TryFrom<&'_ str> for Byte
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for Byte
impl Send for Byte
impl Sync for Byte
impl Unpin for Byte
impl UnwindSafe for Byte
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,
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,
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>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,