Struct conduit_utils::HeaderMap [] [src]

pub struct HeaderMap(_);

Methods

impl HeaderMap
[src]

fn normalize(headers: HashMap<StringVec<String>>) -> HeaderMap

fn iter(&self) -> Map<Iter<StringVec<String>>, fn<'a>(InHeader<'a>) -> OutHeader<'a>>

fn len(&self) -> usize

fn clear(&mut self)

fn find(&self, key: &str) -> Option<&Vec<String>>

fn insert(&mut self, k: &str, v: Vec<String>) -> Option<Vec<String>>

fn remove(&mut self, k: &str) -> Option<Vec<String>>

fn find_mut(&mut self, k: &str) -> Option<&mut Vec<String>>

Trait Implementations

impl Debug for HeaderMap
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for HeaderMap
[src]

fn clone(&self) -> HeaderMap

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl PartialEq for HeaderMap
[src]

fn eq(&self, __arg_0: &HeaderMap) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &HeaderMap) -> bool

This method tests for !=.