pub struct Builder<A>where
A: Allocator,{ /* private fields */ }Expand description
A container used to build a message.
Implementations§
source§impl<A> Builder<A>where
A: Allocator,
impl<A> Builder<A>where A: Allocator,
pub fn new(allocator: A) -> Self
sourcepub fn init_root<'a, T: FromPointerBuilder<'a>>(&'a mut self) -> T
pub fn init_root<'a, T: FromPointerBuilder<'a>>(&'a mut self) -> T
Initializes the root as a value of the given type.
sourcepub fn initn_root<'a, T: FromPointerBuilder<'a>>(&'a mut self, length: u32) -> T
pub fn initn_root<'a, T: FromPointerBuilder<'a>>(&'a mut self, length: u32) -> T
Initializes the root as a value of the given list type, with the given length.
sourcepub fn get_root<'a, T: FromPointerBuilder<'a>>(&'a mut self) -> Result<T>
pub fn get_root<'a, T: FromPointerBuilder<'a>>(&'a mut self) -> Result<T>
Gets the root, interpreting it as the given type.
pub fn get_root_as_reader<'a, T: FromPointerReader<'a>>(&'a self) -> Result<T>
sourcepub fn set_root<From: SetPointerBuilder>(&mut self, value: From) -> Result<()>
pub fn set_root<From: SetPointerBuilder>(&mut self, value: From) -> Result<()>
Sets the root to a deep copy of the given value.
sourcepub fn set_root_canonical<From: SetPointerBuilder>(
&mut self,
value: From
) -> Result<()>
pub fn set_root_canonical<From: SetPointerBuilder>( &mut self, value: From ) -> Result<()>
Sets the root to a canonicalized version of value. If this was the first action taken
on this Builder, then a subsequent call to get_segments_for_output() should return
a single segment, containing the full canonicalized message.
pub fn get_segments_for_output(&self) -> OutputSegments<'_>
pub fn into_reader(self) -> Reader<Self>
pub fn into_typed<T: Owned>(self) -> TypedBuilder<T, A>
sourcepub fn into_allocator(self) -> A
pub fn into_allocator(self) -> A
Retrieves the underlying Allocator, deallocating all currently-allocated
segments.
source§impl Builder<HeapAllocator>
impl Builder<HeapAllocator>
sourcepub fn new_default() -> Self
pub fn new_default() -> Self
Constructs a new message::Builder<HeapAllocator> whose first segment has length
SUGGESTED_FIRST_SEGMENT_WORDS.
Trait Implementations§
source§impl<A> ReaderSegments for Builder<A>where
A: Allocator,
impl<A> ReaderSegments for Builder<A>where A: Allocator,
impl<A> Send for Builder<A>where A: Send + Allocator,
Auto Trait Implementations§
impl<A> RefUnwindSafe for Builder<A>where A: RefUnwindSafe,
impl<A> !Sync for Builder<A>
impl<A> Unpin for Builder<A>where A: Unpin,
impl<A> UnwindSafe for Builder<A>where A: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more