Trait pupper::FixedSize[][src]

pub trait FixedSize {
    const SIZE: usize;
}
Expand description

Has a fixed, or constant, size.

This trait exists to reduce redundancy when writing newtypes of arrays (e.g., Digest, Magic).

Associated Constants

The reported size of this object.

Implementors