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

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

Required Methods

Implementations on Foreign Types

Implementors