pub struct SeqBuilder { /* private fields */ }
Expand description
Utility wrapping around Vec<Frame>
with SeqId
initialisation.
This type implements a builder, which is initialised with header data, then filled with various sliced payloads, and then made into a frame sequence, as outlined in the root netmod docs.
Implementations§
Source§impl SeqBuilder
impl SeqBuilder
Sourcepub fn new(sender: Identity, recp: Recipient, seqid: SeqId) -> Self
pub fn new(sender: Identity, recp: Recipient, seqid: SeqId) -> Self
Initialise a Sequence builder
Auto Trait Implementations§
impl Freeze for SeqBuilder
impl RefUnwindSafe for SeqBuilder
impl Send for SeqBuilder
impl Sync for SeqBuilder
impl Unpin for SeqBuilder
impl UnwindSafe for SeqBuilder
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