packet::serialize

Struct Nested

Source
pub struct Nested<I, O> { /* private fields */ }
Expand description

One object encapsulated in another one.

Nesteds are constructed using the [NestedPacketBuilder::encapsulate] and Serializer::encapsulate methods.

When I: NestedPacketBuilder and O: NestedPacketBuilder, Nested<I, O> implements [NestedPacketBuilder]. When I: Serializer and O: NestedPacketBuilder, Nested<I, O> implements Serializer.

Implementations§

Source§

impl<I, O> Nested<I, O>

Source

pub fn into_inner(self) -> I

Consumes this Nested and returns the inner object, discarding the outer one.

Source

pub fn into_outer(self) -> O

Consumes this Nested and returns the outer object, discarding the inner one.

Source

pub fn inner(&self) -> &I

Source

pub fn inner_mut(&mut self) -> &mut I

Source

pub fn outer(&self) -> &O

Source

pub fn outer_mut(&mut self) -> &mut O

Trait Implementations§

Source§

impl<I: Clone, O: Clone> Clone for Nested<I, O>

Source§

fn clone(&self) -> Nested<I, O>

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<I: Debug, O: Debug> Debug for Nested<I, O>

Source§

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

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

impl<I: PartialEq, O: PartialEq> PartialEq for Nested<I, O>

Source§

fn eq(&self, other: &Nested<I, O>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<I: Serializer, O: PacketBuilder> Serializer for Nested<I, O>

Source§

type Buffer = <I as Serializer>::Buffer

The type of buffers returned from serialization methods on this trait.
Source§

fn serialize<B: GrowBufferMut, P: BufferProvider<I::Buffer, B>>( self, outer: PacketConstraints, provider: P, ) -> Result<B, (SerializeError<P::Error>, Self)>

Serializes this Serializer, producing a buffer. Read more
Source§

fn serialize_new_buf<B: ReusableBuffer, A: BufferAlloc<B>>( &self, outer: PacketConstraints, alloc: A, ) -> Result<B, SerializeError<A::Error>>

Serializes the data into a new buffer without consuming self. Read more
Source§

fn serialize_vec( self, outer: PacketConstraints, ) -> Result<Either<Self::Buffer, Buf<Vec<u8>>>, (SerializeError<Never>, Self)>
where Self::Buffer: ReusableBuffer,

Serializes this Serializer, allocating a Buf<Vec<u8>> if the contained buffer isn’t large enough. Read more
Source§

fn serialize_no_alloc( self, outer: PacketConstraints, ) -> Result<Self::Buffer, (SerializeError<BufferTooShortError>, Self)>
where Self::Buffer: ReusableBuffer,

Serializes this Serializer, failing if the existing buffer is not large enough. Read more
Source§

fn serialize_outer<B: GrowBufferMut, P: BufferProvider<Self::Buffer, B>>( self, provider: P, ) -> Result<B, (SerializeError<P::Error>, Self)>

Serializes this Serializer as the outermost packet. Read more
Source§

fn serialize_vec_outer( self, ) -> Result<Either<Self::Buffer, Buf<Vec<u8>>>, (SerializeError<Never>, Self)>
where Self::Buffer: ReusableBuffer,

Serializes this Serializer as the outermost packet, allocating a Buf<Vec<u8>> if the contained buffer isn’t large enough. Read more
Source§

fn serialize_no_alloc_outer( self, ) -> Result<Self::Buffer, (SerializeError<BufferTooShortError>, Self)>
where Self::Buffer: ReusableBuffer,

Serializes this Serializer as the outermost packet, failing if the existing buffer is not large enough. Read more
Source§

fn encapsulate<B>(self, outer: B) -> Nested<Self, B>

Encapsulates this Serializer in another packet, producing a new Serializer. Read more
Source§

fn with_size_limit(self, limit: usize) -> Nested<Self, LimitedSizePacketBuilder>

Creates a new Serializer which will enforce a size limit. Read more
Source§

impl<I: Copy, O: Copy> Copy for Nested<I, O>

Source§

impl<I: Eq, O: Eq> Eq for Nested<I, O>

Source§

impl<I, O> StructuralPartialEq for Nested<I, O>

Auto Trait Implementations§

§

impl<I, O> Freeze for Nested<I, O>
where I: Freeze, O: Freeze,

§

impl<I, O> RefUnwindSafe for Nested<I, O>

§

impl<I, O> Send for Nested<I, O>
where I: Send, O: Send,

§

impl<I, O> Sync for Nested<I, O>
where I: Sync, O: Sync,

§

impl<I, O> Unpin for Nested<I, O>
where I: Unpin, O: Unpin,

§

impl<I, O> UnwindSafe for Nested<I, O>
where I: UnwindSafe, O: 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

Source§

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>,

Source§

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>,

Source§

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.