[][src]Struct net_parser_rs::layer3::arp::Arp

pub struct Arp {
    pub sender_ip: IpAddr,
    pub sender_mac: MacAddress,
    pub target_ip: IpAddr,
    pub target_mac: MacAddress,
    pub operation: u16,
}

Fields

sender_ip: IpAddrsender_mac: MacAddresstarget_ip: IpAddrtarget_mac: MacAddressoperation: u16

Methods

impl Arp[src]

pub fn new(
    sender_ip: Ipv4Addr,
    sender_mac: [u8; 6],
    target_ip: Ipv4Addr,
    target_mac: [u8; 6],
    operation: u16
) -> Arp
[src]

pub fn parse(input: &[u8]) -> Result<(&[u8], Arp), Error>[src]

Trait Implementations

impl Clone for Arp[src]

impl Copy for Arp[src]

impl Debug for Arp[src]

impl FlowExtraction for Arp[src]

Auto Trait Implementations

impl RefUnwindSafe for Arp

impl Send for Arp

impl Sync for Arp

impl Unpin for Arp

impl UnwindSafe for Arp

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.