gabi 0.2.6

This crate provides a simple `Bytes` struct that stores a number and displays it in human readable format
Documentation
1
initSidebarItems({"constant":[["BIBYTES","Array with the list of unit names to use in the power of 1024 system"],["GABYTES","Array with the list of unit names to use in the power of 1000 system"]],"enum":[["BytesBase","Specify the possible choices for the base used for the display of bytes, i.e. Gabyte: Powers of 1000 bytes (Kilobyte, Megabyte, …) Bibyte: Powers of 1024 bytes (Kibibyte, Mebibyte, …) giving its name to the crate Ga/Bi(byte)."]],"struct":[["Bytes","The struct used to store the number of bytes. Trait bounds specify what traits are required from the type used to store the number of bytes. `Into<u64>` in particular is required as the number of bytes is temporarily converted to `u64` (the only type that we are sure can store any number stored in another type without overflowing) to compare it."],["BytesConfig","This struct captures the preferences for display of bytes and creates instances of `Bytes` struct that contain a reference to the preferences that they must use for display. If the preferences are changed, all `Bytes` that the `BytesConfig` instanciated adopt immediately the change. Config wrapped in Mutex makes the implementation threadsafe."]],"trait":[["Unsigned","Marker trait used to indicate to the compiler what types are allowed to initialize the struct."]]});