[][src]Trait rustracing::carrier::SetHttpHeaderField

pub trait SetHttpHeaderField {
    fn set_http_header_field(&mut self, name: &str, value: &str) -> Result<()>;
}

This trait allows to insert fields in a HTTP header.

Required methods

fn set_http_header_field(&mut self, name: &str, value: &str) -> Result<()>

Sets the value of the field named name in the HTTP header to value.

Loading content...

Implementations on Foreign Types

impl<S: BuildHasher> SetHttpHeaderField for HashMap<String, String, S>[src]

Loading content...

Implementors

Loading content...