[][src]Struct capnp::message::ScratchSpaceHeapAllocator

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

An Allocator whose first segment is a backed by a user-provided buffer.

Implementations

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

pub fn new(scratch_space: &'a mut [u8]) -> ScratchSpaceHeapAllocator<'a>[src]

Writes zeroes into the entire buffer and constructs a new allocator from it.

If you want to reuse the same buffer and to minimize the cost of zeroing for each message, you can call message::Builder::into_allocator() to recover the allocator from the previous message and then pass it into the new message.

pub fn second_segment_words(self, value: u32) -> ScratchSpaceHeapAllocator<'a>[src]

Sets the size of the second segment in words, where 1 word = 8 bytes. (The first segment is the scratch space passed to ScratchSpaceHeapAllocator::new().

pub fn allocation_strategy(
    self,
    value: AllocationStrategy
) -> ScratchSpaceHeapAllocator<'a>
[src]

Sets the allocation strategy for segments after the second one.

Trait Implementations

impl<'a> Allocator for ScratchSpaceHeapAllocator<'a>[src]

Auto Trait Implementations

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.