Struct ppp_packet::CodeRejectPacket
source · pub struct CodeRejectPacket<B> { /* private fields */ }
Expand description
Wrapper around a parsed on-the-wire code reject packet header and the rest of the packet.
Trait Implementations§
source§impl<B: SplitByteSlice> ParsablePacket<B, ()> for CodeRejectPacket<B>
impl<B: SplitByteSlice> ParsablePacket<B, ()> for CodeRejectPacket<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 CodeRejectPacket<B>where
B: Freeze,
impl<B> RefUnwindSafe for CodeRejectPacket<B>where
B: RefUnwindSafe,
impl<B> Send for CodeRejectPacket<B>where
B: Send,
impl<B> Sync for CodeRejectPacket<B>where
B: Sync,
impl<B> Unpin for CodeRejectPacket<B>where
B: Unpin,
impl<B> UnwindSafe for CodeRejectPacket<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