[][src]Struct hyperx::header::Raw

pub struct Raw(_);

A raw header value.

Methods

impl Raw[src]

pub fn push<V: Into<Raw>>(&mut self, val: V)[src]

Append a line to this Raw header value.

Trait Implementations

impl<'a> RawLike<'a> for Raw[src]

type IntoIter = RawLines<'a>

The associated type of Iterator over values.

impl From<Vec<Vec<u8>>> for Raw[src]

impl From<String> for Raw[src]

impl From<Vec<u8>> for Raw[src]

impl<'a> From<&'a str> for Raw[src]

impl<'a> From<&'a [u8]> for Raw[src]

impl From<Bytes> for Raw[src]

impl Clone for Raw[src]

impl Eq for Raw[src]

impl<'a> IntoIterator for &'a Raw[src]

type IntoIter = RawLines<'a>

Which kind of iterator are we turning this into?

type Item = &'a [u8]

The type of the elements being iterated over.

impl PartialEq<Raw> for Raw[src]

impl PartialEq<[Vec<u8>]> for Raw[src]

impl<'a> PartialEq<[&'a [u8]]> for Raw[src]

impl PartialEq<[String]> for Raw[src]

impl<'a> PartialEq<[&'a str]> for Raw[src]

impl PartialEq<[u8]> for Raw[src]

impl PartialEq<str> for Raw[src]

impl Debug for Raw[src]

impl Index<usize> for Raw[src]

type Output = [u8]

The returned type after indexing.

Auto Trait Implementations

impl Send for Raw

impl Sync for Raw

impl Unpin for Raw

impl RefUnwindSafe for Raw

impl UnwindSafe for Raw

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]