pub trait DocumentDeserializer {
// Required methods
fn decode_document(src: &[u8]) -> OrientResult<ODocument>;
fn decode_projection(src: &[u8]) -> OrientResult<Projection>;
}
Required Methods§
fn decode_document(src: &[u8]) -> OrientResult<ODocument>
fn decode_projection(src: &[u8]) -> OrientResult<Projection>
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.