pub struct TcpFlags {
pub syn: bool,
pub ack: bool,
pub fin: bool,
pub rst: bool,
}Expand description
TCP flags for state transitions.
Fields§
§syn: bool§ack: bool§fin: bool§rst: boolTrait Implementations§
impl Copy for TcpFlags
Auto Trait Implementations§
impl Freeze for TcpFlags
impl RefUnwindSafe for TcpFlags
impl Send for TcpFlags
impl Sync for TcpFlags
impl Unpin for TcpFlags
impl UnwindSafe for TcpFlags
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