pub trait MetadataOption<'a> {
    fn metadata(&self) -> Option<&'a HashMap<&'a str, &'a str>>;

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

Required Methods

Provided Methods

Implementors