pub unsafe trait Params {
    fn layout(&self) -> Layout;
}
Expand description

Safety

The ’layout` method should return constant, i.e. same value on every call.

Required Methods

Implementors