pub trait FixedSized: Sized {
    const RAW_BYTE_LEN: usize;
}
Expand description

A trait for types that have a known size.

Required Associated Constants

The number of bytes required to encode this type.

Implementations on Foreign Types

Implementors