Struct otter_api_tests::imports::libc::rtentry[]

#[repr(C)]
pub struct rtentry {
Show fields pub rt_pad1: u64, pub rt_dst: sockaddr, pub rt_gateway: sockaddr, pub rt_genmask: sockaddr, pub rt_flags: u16, pub rt_pad2: i16, pub rt_pad3: u64, pub rt_tos: u8, pub rt_class: u8, pub rt_pad4: [i16; 3], pub rt_metric: i16, pub rt_dev: *mut i8, pub rt_mtu: u64, pub rt_window: u64, pub rt_irtt: u16,
}

Fields

rt_pad1: u64rt_dst: sockaddrrt_gateway: sockaddrrt_genmask: sockaddrrt_flags: u16rt_pad2: i16rt_pad3: u64rt_tos: u8rt_class: u8rt_pad4: [i16; 3]rt_metric: i16rt_dev: *mut i8rt_mtu: u64rt_window: u64rt_irtt: u16

Trait Implementations

impl Clone for rtentry

impl Copy for rtentry

impl Debug for rtentry

impl Eq for rtentry

impl Hash for rtentry

impl PartialEq<rtentry> for rtentry

impl StructuralEq for rtentry

impl StructuralPartialEq for rtentry

Auto Trait Implementations

impl RefUnwindSafe for rtentry

impl !Send for rtentry

impl !Sync for rtentry

impl Unpin for rtentry

impl UnwindSafe for rtentry

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

impl<A> DynCastExt for A

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,