Trait minsize::NotEmpty[][src]

pub trait NotEmpty: Sealed { }
Expand description

Marker trait for non-empty minimum sizes.

The purpose of this is to abstract over the length restriction until const expressions are stabilized. Currently it is implemented for some useful sizes manually, but once the necessary language features are stabilized, this will be replaced with a blanket impl for all unsigned integers greater than zero.

Implementors