pub trait IntoRow<'s>: Sized {
type Serializer: Serializer<'s, Self>;
// Required method
fn get_serializer() -> Self::Serializer;
}
Available on crate feature
row
only.Expand description
Produce a Serializer
to convert values of this type into rows
of output.
Required Associated Types§
type Serializer: Serializer<'s, Self>
Required Methods§
fn get_serializer() -> Self::Serializer
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.