Trait struct_deser::SerializedByteLen [] [src]

pub trait SerializedByteLen {
    const BYTE_LEN: usize;
}

Defines length (number of bytes) of struct when serialized.

It's used by other traits, so it guarantees that the sizes are same.

Associated Constants

How many bytes the struct occupies on wire.

Implementors