Struct ppp_packet::ProtocolRejectPacket
source · 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>
§type Error = ParseError
type Error = ParseError
source§fn parse_metadata(&self) -> ParseMetadata
fn parse_metadata(&self) -> ParseMetadata
Gets metadata about this packet required by [
GrowBuffer::undo_parse
]. Read moreAuto 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