pub trait AlwaysFixedSize {
    // Required method
    fn asize(&self) -> usize;
}
Expand description

Trait useful for objects which aren’t influenced by whether some other type (for example, a generic parameter type) is fixed-size or not.

Required Methods§

source

fn asize(&self) -> usize

Implementors§