[][src]Enum capnp::OutputSegments

pub enum OutputSegments<'a> {
    SingleSegment([&'a [Word]; 1]),
    MultiSegment(Vec<&'a [Word]>),
}

Helper struct that allows MessageBuilder::get_segments_for_output() to avoid heap allocations in the single-segment case.

Variants

SingleSegment([&'a [Word]; 1])MultiSegment(Vec<&'a [Word]>)

Trait Implementations

impl<'s> ReaderSegments for OutputSegments<'s>[src]

fn len(&self) -> usize[src]

Gets the number of segments.

impl<'a> Deref for OutputSegments<'a>[src]

type Target = [&'a [Word]]

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a> Send for OutputSegments<'a>

impl<'a> Sync for OutputSegments<'a>

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.