[][src]Struct solicit::http::HeaderPart

pub struct HeaderPart<'a>(_);

A convenience struct representing a part of a header (either the name or the value) that can be either an owned or a borrowed byte sequence.

Trait Implementations

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

impl<'a> From<&'a [u8; 0]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 1]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 10]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 2]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 3]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 4]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 5]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 6]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 7]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 8]> for HeaderPart<'a>[src]

impl<'a> From<&'a [u8; 9]> for HeaderPart<'a>[src]

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

impl<'a> From<Cow<'a, [u8]>> for HeaderPart<'a>[src]

impl<'a> From<Vec<u8>> for HeaderPart<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for HeaderPart<'a>

impl<'a> Send for HeaderPart<'a>

impl<'a> Sync for HeaderPart<'a>

impl<'a> Unpin for HeaderPart<'a>

impl<'a> UnwindSafe for HeaderPart<'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, 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.