pub trait LenType: Display + TryFrom<usize> + TryInto<usize> + Encoder + for<'de> Decoder<'de> {
    fn max() -> Self;
    fn bits() -> u32;
    fn ty_str() -> &'static str;
}
Expand description

Supported length type for Record

Required Methods

Implementations on Foreign Types

Implementors