[][src]Struct sozu_lib::protocol::http::parser::Header

pub struct Header<'a> {
    pub name: &'a [u8],
    pub value: &'a [u8],
}

Fields

name: &'a [u8]value: &'a [u8]

Implementations

impl<'a> Header<'a>[src]

pub fn value(&self) -> HeaderValue<'_>[src]

pub fn should_delete(&self, conn: &Connection, sticky_name: &str) -> bool[src]

pub fn must_mutate(&self) -> bool[src]

pub fn mutate_header(
    &self,
    buf: &[u8],
    offset: usize,
    sticky_name: &str
) -> Vec<BufferMove>
[src]

Trait Implementations

impl<'a> Debug for Header<'a>[src]

impl<'a> PartialEq<Header<'a>> for Header<'a>[src]

impl<'a> StructuralPartialEq for Header<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Header<'a>

impl<'a> Send for Header<'a>

impl<'a> Sync for Header<'a>

impl<'a> Unpin for Header<'a>

impl<'a> UnwindSafe for Header<'a>

Blanket Implementations

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

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,