Trait email_format::rfc5322::Streamable [] [src]

pub trait Streamable {
    fn stream<W: Write>(&self, w: &mut W) -> Result<usize, IoError>;
}

Required Methods

Serializes and sends the content out to w, returning the number of bytes written.

Implementors