pub trait Output {
type Row;
type Info;
type Error: Error;
// Required methods
fn format_name() -> FormatName;
fn deserialize(
&self,
slice: &[u8],
) -> OutputResult<Self::Row, Self::Info, Self::Error>;
}Required Associated Types§
Required Methods§
fn format_name() -> FormatName
fn deserialize( &self, slice: &[u8], ) -> OutputResult<Self::Row, Self::Info, Self::Error>
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.