[][src]Struct libc::sockaddr_inarp

#[repr(C)]pub struct sockaddr_inarp {
    pub sin_len: c_uchar,
    pub sin_family: c_uchar,
    pub sin_port: c_ushort,
    pub sin_addr: in_addr,
    pub sin_srcaddr: in_addr,
    pub sin_tos: c_ushort,
    pub sin_other: c_ushort,
}

Fields

sin_len: c_ucharsin_family: c_ucharsin_port: c_ushortsin_addr: in_addrsin_srcaddr: in_addrsin_tos: c_ushortsin_other: c_ushort

Trait Implementations

impl Clone for sockaddr_inarp[src]

impl Copy for sockaddr_inarp[src]

Auto Trait Implementations

impl Send for sockaddr_inarp

impl Sync for sockaddr_inarp

impl Unpin for sockaddr_inarp

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, 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.