dbn::encode

Trait DbnEncodable

source
pub trait DbnEncodable:
    Record
    + AsRef<[u8]>
    + CsvSerialize
    + Debug
    + JsonSerialize { }
Expand description

Trait alias for HasRType, AsRef<[u8]>, CsvSerialize, fmt::Debug, and JsonSerialize.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

source§

impl<T> DbnEncodable for T
where T: HasRType + AsRef<[u8]> + CsvSerialize + Debug + JsonSerialize,