pub struct PacketBatch { /* private fields */ }

Implementations§

source§

impl PacketBatch

source

pub fn new(packets: Vec<Packet>) -> Self

source

pub fn with_capacity(capacity: usize) -> Self

source

pub fn new_pinned_with_capacity(capacity: usize) -> Self

source

pub fn new_unpinned_with_recycler( recycler: &PacketBatchRecycler, capacity: usize, name: &'static str ) -> Self

source

pub fn new_with_recycler( recycler: &PacketBatchRecycler, capacity: usize, name: &'static str ) -> Self

source

pub fn new_with_recycler_data( recycler: &PacketBatchRecycler, name: &'static str, packets: Vec<Packet> ) -> Self

source

pub fn new_unpinned_with_recycler_data_and_dests<T: Serialize>( recycler: &PacketBatchRecycler, name: &'static str, dests_and_data: &[(SocketAddr, T)] ) -> Self

source

pub fn new_unpinned_with_recycler_data( recycler: &PacketBatchRecycler, name: &'static str, packets: Vec<Packet> ) -> Self

source

pub fn resize(&mut self, new_len: usize, value: Packet)

source

pub fn truncate(&mut self, len: usize)

source

pub fn push(&mut self, packet: Packet)

source

pub fn set_addr(&mut self, addr: &SocketAddr)

source

pub fn len(&self) -> usize

source

pub fn capacity(&self) -> usize

source

pub fn is_empty(&self) -> bool

source

pub fn as_ptr(&self) -> *const Packet

source

pub fn iter(&self) -> Iter<'_, Packet>

source

pub fn iter_mut(&mut self) -> IterMut<'_, Packet>

source

pub unsafe fn set_len(&mut self, new_len: usize)

See Vector::set_len() for more details

§Safety
  • new_len must be less than or equal to [self.capacity].
  • The elements at old_len..new_len must be initialized. Packet data will likely be overwritten when populating the packet, but the meta should specifically be initialized to known values.

Trait Implementations§

source§

impl AbiExample for PacketBatch

source§

fn example() -> Self

source§

impl Clone for PacketBatch

source§

fn clone(&self) -> PacketBatch

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 Debug for PacketBatch

source§

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

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

impl Default for PacketBatch

source§

fn default() -> PacketBatch

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for PacketBatch

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<PacketBatch> for Vec<Packet>

source§

fn from(batch: PacketBatch) -> Self

Converts to this type from the input type.
source§

impl<I: SliceIndex<[Packet]>> Index<I> for PacketBatch

§

type Output = <I as SliceIndex<[Packet]>>::Output

The returned type after indexing.
source§

fn index(&self, index: I) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl<I: SliceIndex<[Packet]>> IndexMut<I> for PacketBatch

source§

fn index_mut(&mut self, index: I) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl<'a> IntoIterator for &'a PacketBatch

§

type Item = &'a Packet

The type of the elements being iterated over.
§

type IntoIter = Iter<'a, Packet>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl<'a> IntoParallelIterator for &'a PacketBatch

§

type Iter = Iter<'a, Packet>

The parallel iterator type that will be created.
§

type Item = &'a Packet

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> Self::Iter

Converts self into a parallel iterator. Read more
source§

impl<'a> IntoParallelIterator for &'a mut PacketBatch

§

type Iter = IterMut<'a, Packet>

The parallel iterator type that will be created.
§

type Item = &'a mut Packet

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> Self::Iter

Converts self into a parallel iterator. Read more
source§

impl Serialize for PacketBatch

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> AbiEnumVisitor for T
where T: Serialize + ?Sized,

source§

default fn visit_for_abi( &self, _digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>

source§

impl<T> AbiEnumVisitor for T
where T: Serialize + AbiExample + ?Sized,

source§

default fn visit_for_abi( &self, digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>

source§

impl<T> AbiExample for T

source§

default fn example() -> T

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<Ctx, I, R> Cread<Ctx, I> for R
where Ctx: Copy, R: Index<I> + Index<RangeFrom<I>> + ?Sized,

source§

fn cread_with<N>(&self, offset: I, ctx: Ctx) -> N
where N: FromCtx<Ctx, Self::Output>,

Reads a value from Self at offset with ctx. Cannot fail. If the buffer is too small for the value requested, this will panic. Read more
source§

fn cread<N>(&self, offset: I) -> N
where N: FromCtx<Ctx, Self::Output>, Ctx: Default,

Reads a value implementing FromCtx from Self at offset, with the target machine’s endianness. For the primitive types, this will be the target machine’s endianness. Read more
source§

impl<Ctx, I, W> Cwrite<Ctx, I> for W
where Ctx: Copy, W: Index<I> + IndexMut<RangeFrom<I>> + ?Sized,

source§

fn cwrite<N>(&mut self, n: N, offset: I)
where N: IntoCtx<Ctx, Self::Output>, Ctx: Default,

Writes n into Self at offset; uses default context. For the primitive types, this will be the target machine’s endianness. Read more
source§

fn cwrite_with<N>(&mut self, n: N, offset: I, ctx: Ctx)
where N: IntoCtx<Ctx, Self::Output>,

Writes n into Self at offset with ctx Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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<'data, I> IntoParallelRefIterator<'data> for I
where I: 'data + ?Sized, &'data I: IntoParallelIterator,

§

type Iter = <&'data I as IntoParallelIterator>::Iter

The type of the parallel iterator that will be returned.
§

type Item = <&'data I as IntoParallelIterator>::Item

The type of item that the parallel iterator will produce. This will typically be an &'data T reference type.
source§

fn par_iter(&'data self) -> <I as IntoParallelRefIterator<'data>>::Iter

Converts self into a parallel iterator. Read more
source§

impl<'data, I> IntoParallelRefMutIterator<'data> for I

§

type Iter = <&'data mut I as IntoParallelIterator>::Iter

The type of iterator that will be created.
§

type Item = <&'data mut I as IntoParallelIterator>::Item

The type of item that will be produced; this is typically an &'data mut T reference.
source§

fn par_iter_mut( &'data mut self ) -> <I as IntoParallelRefMutIterator<'data>>::Iter

Creates the parallel iterator from self. Read more
source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,