Comment on page
size
Types used to pretty print size values
A generic size type which displays its value in Bytes (or kiB, MiB, GiB, TiB, PiB, EiB if larger)
<T>
: Underlying type
using Size<> = u128 [[format]];
A 128 bit size type
using Size128 = type::Size;
A 16 bit size type
using Size16 = type::Size;
A 32 bit size type
using Size32 = type::Size;
A 64 bit size type
using Size64 = type::Size;
A 8 bit size type
using Size8 = type::Size;
Last modified 6mo ago