Trait memory_units::ByteSize[][src]

pub trait ByteSize {
    fn byte_size() -> Bytes;
}

A trait defining the size, in bytes, of one unit of Self.

Example

println!("The size of one word in bytes is {}.", Words::byte_size().0);

Required methods

fn byte_size() -> Bytes[src]

The size, in bytes, of a single unit of Self.

Loading content...

Implementors

impl ByteSize for Bytes[src]

impl ByteSize for memory_units::target::Pages[src]

impl ByteSize for memory_units::target::Words[src]

impl ByteSize for memory_units::wasm32::Pages[src]

impl ByteSize for memory_units::wasm32::Words[src]

Loading content...