Struct rustbus::wire::unmarshal::UnmarshalContext[][src]

pub struct UnmarshalContext<'fds, 'buf> {
    pub fds: &'fds [UnixFd],
    pub buf: &'buf [u8],
    pub byteorder: ByteOrder,
    pub offset: usize,
}

Fields

fds: &'fds [UnixFd]buf: &'buf [u8]byteorder: ByteOrderoffset: usize

Implementations

impl UnmarshalContext<'_, '_>[src]

pub fn align_to(&mut self, alignment: usize) -> Result<usize, Error>[src]

Auto Trait Implementations

impl<'fds, 'buf> RefUnwindSafe for UnmarshalContext<'fds, 'buf>

impl<'fds, 'buf> Send for UnmarshalContext<'fds, 'buf>

impl<'fds, 'buf> Sync for UnmarshalContext<'fds, 'buf>

impl<'fds, 'buf> Unpin for UnmarshalContext<'fds, 'buf>

impl<'fds, 'buf> UnwindSafe for UnmarshalContext<'fds, 'buf>

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.