pub enum TcpFlag {
Syn,
Fin,
Rst,
Psh,
Ack,
Urg,
Ece,
Cwr,
Unknown(u8),
}
Expand description
TCP Flag Kind
Variants§
Implementations§
Trait Implementations§
impl Copy for TcpFlag
impl StructuralPartialEq for TcpFlag
Auto Trait Implementations§
impl Freeze for TcpFlag
impl RefUnwindSafe for TcpFlag
impl Send for TcpFlag
impl Sync for TcpFlag
impl Unpin for TcpFlag
impl UnwindSafe for TcpFlag
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