#[repr(u8)]pub enum PapFunction {
OpenConn = 1,
OpenConnReply = 2,
SendData = 3,
Data = 4,
Tickle = 5,
CloseConn = 6,
CloseConnReply = 7,
SendStatus = 8,
Status = 9,
}Expand description
PAP function codes
Variants§
OpenConn = 1
OpenConnReply = 2
SendData = 3
Data = 4
Tickle = 5
CloseConn = 6
CloseConnReply = 7
SendStatus = 8
Status = 9
Trait Implementations§
Source§impl Clone for PapFunction
impl Clone for PapFunction
Source§fn clone(&self) -> PapFunction
fn clone(&self) -> PapFunction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PapFunction
impl Debug for PapFunction
Source§impl PartialEq for PapFunction
impl PartialEq for PapFunction
Source§fn eq(&self, other: &PapFunction) -> bool
fn eq(&self, other: &PapFunction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<u8> for PapFunction
impl TryFrom<u8> for PapFunction
impl Copy for PapFunction
impl Eq for PapFunction
impl StructuralPartialEq for PapFunction
Auto Trait Implementations§
impl Freeze for PapFunction
impl RefUnwindSafe for PapFunction
impl Send for PapFunction
impl Sync for PapFunction
impl Unpin for PapFunction
impl UnsafeUnpin for PapFunction
impl UnwindSafe for PapFunction
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