[][src]Struct libc::sockaddr_dl

#[repr(C)]pub struct sockaddr_dl {
    pub sdl_len: c_uchar,
    pub sdl_family: c_uchar,
    pub sdl_index: c_ushort,
    pub sdl_type: c_uchar,
    pub sdl_nlen: c_uchar,
    pub sdl_alen: c_uchar,
    pub sdl_slen: c_uchar,
    pub sdl_data: [c_char; 12],
}

Fields

sdl_len: c_ucharsdl_family: c_ucharsdl_index: c_ushortsdl_type: c_ucharsdl_nlen: c_ucharsdl_alen: c_ucharsdl_slen: c_ucharsdl_data: [c_char; 12]

Trait Implementations

impl Clone for sockaddr_dl[src]

impl Copy for sockaddr_dl[src]

Auto Trait Implementations

impl Send for sockaddr_dl

impl Sync for sockaddr_dl

impl Unpin for sockaddr_dl

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.