pub struct TcpFlags {
pub syn: bool,
pub ack: bool,
pub fin: bool,
pub rst: bool,
pub psh: bool,
pub urg: bool,
}Expand description
TCP control flags.
Fields§
§syn: bool§ack: bool§fin: bool§rst: bool§psh: bool§urg: boolTrait Implementations§
impl Copy for TcpFlags
impl Eq for TcpFlags
impl StructuralPartialEq 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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.