pub trait Serialize {
    fn to_bytes_mut<B>(&self, buf: &mut B)
   where
        B: Buffer
; fn to_bytes<B>(&self, capacity: usize) -> <B as Buffer>::Freeze
   where
        B: Buffer
, { ... } }

Required Methods

Provided Methods

Implementations on Foreign Types

Serialize into a rfc3339 time string

See the serde module for alternate serializations.

Implementors