pub struct PacketBatch {
    packets: PinnedVec<Packet>,
}

Fields§

§packets: PinnedVec<Packet>

Implementations§

§

impl PacketBatch

pub fn new(packets: Vec<Packet, Global>) -> PacketBatch

pub fn with_capacity(capacity: usize) -> PacketBatch

pub fn new_pinned_with_capacity(capacity: usize) -> PacketBatch

pub fn new_unpinned_with_recycler( recycler: Recycler<PinnedVec<Packet>>, capacity: usize, name: &'static str ) -> PacketBatch

pub fn new_with_recycler( recycler: Recycler<PinnedVec<Packet>>, capacity: usize, name: &'static str ) -> PacketBatch

pub fn new_with_recycler_data( recycler: &Recycler<PinnedVec<Packet>>, name: &'static str, packets: Vec<Packet, Global> ) -> PacketBatch

pub fn new_unpinned_with_recycler_data_and_dests<T>( recycler: Recycler<PinnedVec<Packet>>, name: &'static str, dests_and_data: &[(SocketAddr, T)] ) -> PacketBatchwhere T: Serialize,

pub fn new_unpinned_with_recycler_data( recycler: &Recycler<PinnedVec<Packet>>, name: &'static str, packets: Vec<Packet, Global> ) -> PacketBatch

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

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

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

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

pub fn len(&self) -> usize

pub fn capacity(&self) -> usize

pub fn is_empty(&self) -> bool

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

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

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

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§

§

impl Clone for PacketBatch

§

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
§

impl Debug for PacketBatch

§

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

Formats the value using the given formatter. Read more
§

impl Default for PacketBatch

§

fn default() -> PacketBatch

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

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

§

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

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

impl From<PacketBatch> for Vec<Packet, Global>

§

fn from(batch: PacketBatch) -> Vec<Packet, Global>

Converts to this type from the input type.
§

impl<I> Index<I> for PacketBatchwhere I: SliceIndex<[Packet]>,

§

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

The returned type after indexing.
§

fn index(&self, index: I) -> &<PacketBatch as Index<I>>::Output

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

impl<I> IndexMut<I> for PacketBatchwhere I: SliceIndex<[Packet]>,

§

fn index_mut(&mut self, index: I) -> &mut <PacketBatch as Index<I>>::Output

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

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?
§

fn into_iter(self) -> <&'a PacketBatch as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

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.
§

fn into_par_iter(self) -> <&'a PacketBatch as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
§

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.
§

fn into_par_iter(self) -> <&'a mut PacketBatch as IntoParallelIterator>::Iter

Converts self into a parallel iterator. Read more
§

impl Serialize for PacketBatch

§

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

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

§

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

§

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

§

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

§

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

§

impl<T> AbiExample for T

§

default fn example() -> T

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<Ctx, I, R> Cread<Ctx, I> for Rwhere Ctx: Copy, R: Index<I> + Index<RangeFrom<I>> + ?Sized,

§

fn cread_with<N>(&self, offset: I, ctx: Ctx) -> Nwhere 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
§

fn cread<N>(&self, offset: I) -> Nwhere 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
§

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

§

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
§

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 Twhere 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.

§

impl<'data, I> IntoParallelRefIterator<'data> for Iwhere 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.
§

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

Converts self into a parallel iterator. Read more
§

impl<'data, I> IntoParallelRefMutIterator<'data> for Iwhere I: 'data + ?Sized, &'data mut I: IntoParallelIterator,

§

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.
§

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

Creates the parallel iterator from self. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere 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 Twhere 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 Twhere 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.
§

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

§

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 Twhere T: for<'de> Deserialize<'de>,