pub trait Serialize {
    fn serialize<S>(
        &self,
        serializer: S
    ) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>
    where
        S: Serializer
; }
Expand description

Types that can be serialized via #[serde(with = "serde_bytes")].

Required Methods

Implementations on Foreign Types

Implementors