pub struct RecordSequenceBuilder<R, I> { /* private fields */ }
Expand description

A builder capable of serializing a sequence of records.

A RecordSequenceBuilder is instantiated with an Iterator that provides RecordBuilders to be serialized. The item produced by the iterator can be any type which implements Borrow<R> for R: RecordBuilder.

RecordSequenceBuilder implements InnerPacketBuilder.

Implementations§

source§

impl<R, I> RecordSequenceBuilder<R, I>

source

pub fn new(records: I) -> Self

Creates a new RecordSequenceBuilder with the given records.

records must produce the same sequence of values from every iteration, even if cloned. Serialization is typically performed with two passes on records: one to calculate the total length in bytes (serialized_len) and another one to serialize to a buffer (serialize_into). Violating this rule may result in panics or malformed serialized record sequences.

source§

impl<R, I> RecordSequenceBuilder<R, I>
where R: RecordBuilder, I: Iterator + Clone, I::Item: Borrow<R>,

source

pub fn serialized_len(&self) -> usize

Returns the total length, in bytes, of the serialized encoding of the records contained within self.

source

pub fn serialize_into(&self, buffer: &mut [u8])

Serializes all the records contained within self into the given buffer.

§Panics

serialize_into expects that buffer has enough bytes to serialize the contained records (as obtained from serialized_len), otherwise it’s considered a violation of the API contract and the call may panic.

Trait Implementations§

source§

impl<R: Clone, I: Clone> Clone for RecordSequenceBuilder<R, I>

source§

fn clone(&self) -> RecordSequenceBuilder<R, I>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<R: Debug, I: Debug> Debug for RecordSequenceBuilder<R, I>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<R, I> InnerPacketBuilder for RecordSequenceBuilder<R, I>
where R: RecordBuilder, I: Iterator + Clone, I::Item: Borrow<R>,

source§

fn bytes_len(&self) -> usize

The number of bytes consumed by this packet.
source§

fn serialize(&self, buffer: &mut [u8])

Serializes this packet into an existing buffer. Read more
source§

fn into_serializer(self) -> InnerSerializer<Self, EmptyBuf>
where Self: Sized,

Converts this InnerPacketBuilder into a Serializer. Read more
source§

fn into_serializer_with<B: ShrinkBuffer>( self, buffer: B ) -> InnerSerializer<Self, B>
where Self: Sized,

Converts this InnerPacketBuilder into a Serializer with a buffer that can be used for serialization. Read more

Auto Trait Implementations§

§

impl<R, I> Freeze for RecordSequenceBuilder<R, I>
where I: Freeze,

§

impl<R, I> RefUnwindSafe for RecordSequenceBuilder<R, I>

§

impl<R, I> Send for RecordSequenceBuilder<R, I>
where I: Send, R: Send,

§

impl<R, I> Sync for RecordSequenceBuilder<R, I>
where I: Sync, R: Sync,

§

impl<R, I> Unpin for RecordSequenceBuilder<R, I>
where I: Unpin, R: Unpin,

§

impl<R, I> UnwindSafe for RecordSequenceBuilder<R, I>
where I: UnwindSafe, R: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.