pub trait ConstBytesValue<const LEN: usize> {
    type Error: Default + Error + Send + Sync + 'static;

    const VALUE: [u8; LEN];
}

Required Associated Types§

source

type Error: Default + Error + Send + Sync + 'static

Required Associated Constants§

source

const VALUE: [u8; LEN]

Object Safety§

This trait is not object safe.

Implementors§