Struct solana_perf::packet::PacketBatch
source · pub struct PacketBatch { /* private fields */ }
Implementations§
source§impl PacketBatch
impl PacketBatch
pub fn new(packets: Vec<Packet>) -> Self
pub fn with_capacity(capacity: usize) -> Self
pub fn new_pinned_with_capacity(capacity: usize) -> Self
pub fn new_unpinned_with_recycler( recycler: PacketBatchRecycler, capacity: usize, name: &'static str ) -> Self
pub fn new_with_recycler( recycler: PacketBatchRecycler, capacity: usize, name: &'static str ) -> Self
pub fn new_with_recycler_data( recycler: &PacketBatchRecycler, name: &'static str, packets: Vec<Packet> ) -> Self
pub fn new_unpinned_with_recycler_data_and_dests<T: Serialize>( recycler: PacketBatchRecycler, name: &'static str, dests_and_data: &[(SocketAddr, T)] ) -> Self
pub fn new_unpinned_with_recycler_data( recycler: &PacketBatchRecycler, name: &'static str, packets: Vec<Packet> ) -> Self
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>
sourcepub unsafe fn set_len(&mut self, new_len: usize)
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 Clone for PacketBatch
impl Clone for PacketBatch
source§fn clone(&self) -> PacketBatch
fn clone(&self) -> PacketBatch
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PacketBatch
impl Debug for PacketBatch
source§impl Default for PacketBatch
impl Default for PacketBatch
source§fn default() -> PacketBatch
fn default() -> PacketBatch
Returns the “default value” for a type. Read more
source§impl From<PacketBatch> for Vec<Packet>
impl From<PacketBatch> for Vec<Packet>
source§fn from(batch: PacketBatch) -> Self
fn from(batch: PacketBatch) -> Self
Converts to this type from the input type.
source§impl<I: SliceIndex<[Packet]>> Index<I> for PacketBatch
impl<I: SliceIndex<[Packet]>> Index<I> for PacketBatch
source§impl<I: SliceIndex<[Packet]>> IndexMut<I> for PacketBatch
impl<I: SliceIndex<[Packet]>> IndexMut<I> for PacketBatch
source§impl<'a> IntoIterator for &'a PacketBatch
impl<'a> IntoIterator for &'a PacketBatch
source§impl<'a> IntoParallelIterator for &'a PacketBatch
impl<'a> IntoParallelIterator for &'a PacketBatch
source§impl<'a> IntoParallelIterator for &'a mut PacketBatch
impl<'a> IntoParallelIterator for &'a mut PacketBatch
Auto Trait Implementations§
impl RefUnwindSafe for PacketBatch
impl Send for PacketBatch
impl Sync for PacketBatch
impl Unpin for PacketBatch
impl UnwindSafe for PacketBatch
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<'data, I> IntoParallelRefIterator<'data> for Iwhere
I: 'data + ?Sized,
&'data I: IntoParallelIterator,
impl<'data, I> IntoParallelRefIterator<'data> for Iwhere I: 'data + ?Sized, &'data I: IntoParallelIterator,
§type Iter = <&'data I as IntoParallelIterator>::Iter
type Iter = <&'data I as IntoParallelIterator>::Iter
The type of the parallel iterator that will be returned.
§type Item = <&'data I as IntoParallelIterator>::Item
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§impl<'data, I> IntoParallelRefMutIterator<'data> for Iwhere
I: 'data + ?Sized,
&'data mut I: IntoParallelIterator,
impl<'data, I> IntoParallelRefMutIterator<'data> for Iwhere I: 'data + ?Sized, &'data mut I: IntoParallelIterator,
§type Iter = <&'data mut I as IntoParallelIterator>::Iter
type Iter = <&'data mut I as IntoParallelIterator>::Iter
The type of iterator that will be created.
§type Item = <&'data mut I as IntoParallelIterator>::Item
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
fn par_iter_mut( &'data mut self ) -> <I as IntoParallelRefMutIterator<'data>>::Iter
Creates the parallel iterator from
self
. Read more