pub struct ProtocolRejectPacket<B> { /* private fields */ }
Expand description
Wrapper around a parsed on-the-wire protocol reject packet header and the rest of the packet.
Implementations§
Source§impl<B: SplitByteSlice> ProtocolRejectPacket<B>
impl<B: SplitByteSlice> ProtocolRejectPacket<B>
Sourcepub fn rejected_protocol(&self) -> u16
pub fn rejected_protocol(&self) -> u16
Extract the rejected protocol from the wire format.
Trait Implementations§
Source§impl<B: SplitByteSlice> ParsablePacket<B, ()> for ProtocolRejectPacket<B>
impl<B: SplitByteSlice> ParsablePacket<B, ()> for ProtocolRejectPacket<B>
Source§fn parse_metadata(&self) -> ParseMetadata
fn parse_metadata(&self) -> ParseMetadata
Gets metadata about this packet required by
GrowBuffer::undo_parse
. Read moreSource§fn parse<BV: BufferView<B>>(buffer: BV, _args: ()) -> Result<Self, Self::Error>
fn parse<BV: BufferView<B>>(buffer: BV, _args: ()) -> Result<Self, Self::Error>
Parses a packet from a buffer. Read more
Source§fn parse_mut<BV>(buffer: BV, args: ParseArgs) -> Result<Self, Self::Error>where
BV: BufferViewMut<B>,
B: SplitByteSliceMut,
fn parse_mut<BV>(buffer: BV, args: ParseArgs) -> Result<Self, Self::Error>where
BV: BufferViewMut<B>,
B: SplitByteSliceMut,
Parses a packet from a mutable buffer. Read more
Auto Trait Implementations§
impl<B> Freeze for ProtocolRejectPacket<B>where
B: Freeze,
impl<B> RefUnwindSafe for ProtocolRejectPacket<B>where
B: RefUnwindSafe,
impl<B> Send for ProtocolRejectPacket<B>where
B: Send,
impl<B> Sync for ProtocolRejectPacket<B>where
B: Sync,
impl<B> Unpin for ProtocolRejectPacket<B>where
B: Unpin,
impl<B> UnwindSafe for ProtocolRejectPacket<B>where
B: UnwindSafe,
Blanket Implementations§
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