pub trait NumBytesExt {
// Required methods
fn bytes(self) -> NumBytes;
fn kilobytes(self) -> NumBytes;
fn megabytes(self) -> NumBytes;
}Expand description
Extension trait providing convenience-functions for creation of NumBytes of certain sizes.