Struct solana_perf::packet::PacketBatch
source · [−]Fields
packets: PinnedVec<Packet>
Implementations
sourceimpl PacketBatch
impl PacketBatch
pub fn new(packets: Vec<Packet>) -> Self
pub fn with_capacity(capacity: usize) -> Self
pub fn new_unpinned_with_recycler(
recycler: PacketBatchRecycler,
size: usize,
name: &'static str
) -> Self
pub fn new_with_recycler(
recycler: PacketBatchRecycler,
size: 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(
recycler: &PacketBatchRecycler,
name: &'static str,
packets: Vec<Packet>
) -> Self
pub fn set_addr(&mut self, addr: &SocketAddr)
pub fn is_empty(&self) -> bool
Trait Implementations
sourceimpl Clone for PacketBatch
impl Clone for PacketBatch
sourcefn clone(&self) -> PacketBatch
fn clone(&self) -> PacketBatch
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PacketBatch
impl Debug for PacketBatch
sourceimpl Default for PacketBatch
impl Default for PacketBatch
sourcefn default() -> PacketBatch
fn default() -> PacketBatch
Returns the “default value” for a type. Read more
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
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more