Struct trillium_http::HeaderValue
source · [−]pub struct HeaderValue(_);
Expand description
A HeaderValue
represents the right hand side of a single name: value
pair.
Implementations
sourceimpl HeaderValue
impl HeaderValue
sourcepub fn as_str(&self) -> Option<&str>
pub fn as_str(&self) -> Option<&str>
Returns this header value as a &str if it is utf8, None
otherwise. If you need to convert non-utf8 bytes to a string
somehow, match directly on the HeaderValue
as an enum and
handle that case. If you need a byte slice regardless of
whether it’s utf8, use the AsRef<[u8]>
impl
Trait Implementations
sourceimpl AsRef<[u8]> for HeaderValue
impl AsRef<[u8]> for HeaderValue
sourceimpl Clone for HeaderValue
impl Clone for HeaderValue
sourcefn clone(&self) -> HeaderValue
fn clone(&self) -> HeaderValue
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for HeaderValue
impl Debug for HeaderValue
sourceimpl Display for HeaderValue
impl Display for HeaderValue
sourceimpl From<&'static [u8]> for HeaderValue
impl From<&'static [u8]> for HeaderValue
sourceimpl From<&'static str> for HeaderValue
impl From<&'static str> for HeaderValue
sourceimpl From<HeaderValue> for HeaderValues
impl From<HeaderValue> for HeaderValues
sourcefn from(v: HeaderValue) -> Self
fn from(v: HeaderValue) -> Self
Converts to this type from the input type.
sourceimpl From<String> for HeaderValue
impl From<String> for HeaderValue
sourceimpl PartialEq<HeaderValue> for HeaderValue
impl PartialEq<HeaderValue> for HeaderValue
sourcefn eq(&self, other: &HeaderValue) -> bool
fn eq(&self, other: &HeaderValue) -> bool
impl Eq for HeaderValue
impl StructuralEq for HeaderValue
impl StructuralPartialEq for HeaderValue
Auto Trait Implementations
impl RefUnwindSafe for HeaderValue
impl Send for HeaderValue
impl Sync for HeaderValue
impl Unpin for HeaderValue
impl UnwindSafe for HeaderValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more