Struct capnp::private::layout::StructReader[][src]

pub struct StructReader<'a> { /* fields omitted */ }

Implementations

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

pub fn new_default<'b>() -> StructReader<'b>[src]

pub fn imbue(&mut self, cap_table: CapTableReader)[src]

pub fn get_data_section_size(&self) -> BitCount32[src]

pub fn get_pointer_section_size(&self) -> WirePointerCount16[src]

pub fn get_pointer_section_as_list(&self) -> ListReader<'a>[src]

pub fn get_data_section_as_blob(&self) -> &'a [u8]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

pub fn get_data_field<T: Primitive + Zero>(&self, offset: ElementCount) -> T[src]

pub fn get_bool_field(&self, offset: ElementCount) -> bool[src]

pub fn get_data_field_mask<T: Primitive + Zero + Mask>(
    &self,
    offset: ElementCount,
    mask: <T as Mask>::T
) -> T
[src]

pub fn get_bool_field_mask(&self, offset: ElementCount, mask: bool) -> bool[src]

pub fn get_pointer_field(
    &self,
    ptr_index: WirePointerCount
) -> PointerReader<'a>
[src]

pub fn total_size(&self) -> Result<MessageSize>[src]

pub fn is_canonical(
    &self,
    read_head: &Cell<*const u8>,
    ptr_head: &Cell<*const u8>,
    data_trunc: &mut bool,
    ptr_trunc: &mut bool
) -> Result<bool>
[src]

Trait Implementations

impl<'a> Clone for StructReader<'a>[src]

impl<'a> Copy for StructReader<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for StructReader<'a>

impl<'a> !Send for StructReader<'a>

impl<'a> !Sync for StructReader<'a>

impl<'a> Unpin for StructReader<'a>

impl<'a> !UnwindSafe for StructReader<'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> 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.