macro_rules! impl_bytes_storage {
($($type:ty),*) => { ... };
}Expand description
Macro to implement BytesStorage for types that support From<&[u8]>
The types must implement From<&[u8]> to be used with this macro
macro_rules! impl_bytes_storage {
($($type:ty),*) => { ... };
}Macro to implement BytesStorage for types that support From<&[u8]>
The types must implement From<&[u8]> to be used with this macro