[][src]Struct condure::zhttppacket::Response

pub struct Response<'buf, 'ids, 'headers> {
    pub from: &'buf [u8],
    pub ids: &'ids [Id<'buf>],
    pub multi: bool,
    pub ptype: ResponsePacket<'buf, 'headers>,
    pub ptype_str: &'buf str,
}

Fields

from: &'buf [u8]ids: &'ids [Id<'buf>]multi: boolptype: ResponsePacket<'buf, 'headers>ptype_str: &'buf str

Implementations

impl<'buf, 'scratch, '_, '_, '_> Response<'_, '_, '_>[src]

pub fn parse_ids(
    src: &'buf [u8],
    scratch: &'scratch mut ResponseScratch<'buf>
) -> Result<&'scratch [Id<'buf>], ParseError>
[src]

pub fn parse(
    src: &'buf [u8],
    scratch: &'scratch mut ResponseScratch<'buf>
) -> Result<Response<'buf, 'scratch, 'scratch>, ParseError>
[src]

Auto Trait Implementations

impl<'buf, 'ids, 'headers> RefUnwindSafe for Response<'buf, 'ids, 'headers>

impl<'buf, 'ids, 'headers> Send for Response<'buf, 'ids, 'headers>

impl<'buf, 'ids, 'headers> Sync for Response<'buf, 'ids, 'headers>

impl<'buf, 'ids, 'headers> Unpin for Response<'buf, 'ids, 'headers> where
    'buf: 'ids + 'headers, 

impl<'buf, 'ids, 'headers> UnwindSafe for Response<'buf, 'ids, 'headers>

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.