pub struct PacketProcessor<Db>{ /* private fields */ }
Expand description
Implements protocol acknowledgement logic for msg packets
Implementations§
Source§impl<Db> PacketProcessor<Db>
impl<Db> PacketProcessor<Db>
Sourcepub fn new(db: Db, cfg: PacketInteractionConfig) -> Self
pub fn new(db: Db, cfg: PacketInteractionConfig) -> Self
Creates a new instance given the DB and configuration.
Trait Implementations§
Source§impl<Db> Clone for PacketProcessor<Db>
impl<Db> Clone for PacketProcessor<Db>
Source§fn clone(&self) -> PacketProcessor<Db>
fn clone(&self) -> PacketProcessor<Db>
Returns a duplicate 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<Db> Debug for PacketProcessor<Db>
impl<Db> Debug for PacketProcessor<Db>
Source§impl<Db> PacketUnwrapping for PacketProcessor<Db>
impl<Db> PacketUnwrapping for PacketProcessor<Db>
Source§impl<Db> PacketWrapping for PacketProcessor<Db>
impl<Db> PacketWrapping for PacketProcessor<Db>
Auto Trait Implementations§
impl<Db> Freeze for PacketProcessor<Db>where
Db: Freeze,
impl<Db> RefUnwindSafe for PacketProcessor<Db>where
Db: RefUnwindSafe,
impl<Db> Send for PacketProcessor<Db>
impl<Db> Sync for PacketProcessor<Db>
impl<Db> Unpin for PacketProcessor<Db>where
Db: Unpin,
impl<Db> UnwindSafe for PacketProcessor<Db>where
Db: UnwindSafe,
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more