pub trait TrySerialize {
    type Error;

    fn try_serialize(&self, dest: &mut Serializer) -> Result<(), Self::Error>;
}
Expand description

TrySerialize trait accepted by the Serializer::try_store

Required Associated Types§

Required Methods§

Implementors§