pub trait ContentLengthOption {
    fn content_length(&self) -> Option<u64>;

    fn add_header(&self, builder: &mut Builder) { ... }
}

Required Methods

Provided Methods

Implementors