#[repr(C)]
pub union if_settings__bindgen_ty_1 {
    pub raw_hdlc: uref<raw_hdlc_proto>,
    pub cisco: uref<cisco_proto>,
    pub fr: uref<fr_proto>,
    pub fr_pvc: uref<fr_proto_pvc>,
    pub fr_pvc_info: uref<fr_proto_pvc_info>,
    pub x25: uref<x25_hdlc_proto>,
    pub sync: uref<sync_serial_settings>,
    pub te1: uref<te1_settings>,
}

Fields§

§raw_hdlc: uref<raw_hdlc_proto>§cisco: uref<cisco_proto>§fr: uref<fr_proto>§fr_pvc: uref<fr_proto_pvc>§fr_pvc_info: uref<fr_proto_pvc_info>§x25: uref<x25_hdlc_proto>§sync: uref<sync_serial_settings>§te1: uref<te1_settings>

Trait Implementations§

source§

impl Clone for if_settings__bindgen_ty_1

source§

fn clone(&self) -> if_settings__bindgen_ty_1

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for if_settings__bindgen_ty_1

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl FromBytes for if_settings__bindgen_ty_1
where uref<raw_hdlc_proto>: FromBytes, uref<cisco_proto>: FromBytes, uref<fr_proto>: FromBytes, uref<fr_proto_pvc>: FromBytes, uref<fr_proto_pvc_info>: FromBytes, uref<x25_hdlc_proto>: FromBytes, uref<sync_serial_settings>: FromBytes, uref<te1_settings>: FromBytes,

§

fn ref_from(bytes: &[u8]) -> Option<&Self>
where Self: Sized + NoCell,

Interprets the given bytes as a &Self without copying. Read more
§

fn ref_from_prefix(bytes: &[u8]) -> Option<&Self>
where Self: Sized + NoCell,

Interprets the prefix of the given bytes as a &Self without copying. Read more
§

fn ref_from_suffix(bytes: &[u8]) -> Option<&Self>
where Self: Sized + NoCell,

Interprets the suffix of the given bytes as a &Self without copying. Read more
§

fn slice_from(bytes: &[u8]) -> Option<&[Self]>
where Self: Sized + NoCell,

Interprets the given bytes as a &[Self] without copying. Read more
§

fn slice_from_prefix(bytes: &[u8], count: usize) -> Option<(&[Self], &[u8])>
where Self: Sized + NoCell,

Interprets the prefix of the given bytes as a &[Self] with length equal to count without copying. Read more
§

fn slice_from_suffix(bytes: &[u8], count: usize) -> Option<(&[u8], &[Self])>
where Self: Sized + NoCell,

Interprets the suffix of the given bytes as a &[Self] with length equal to count without copying. Read more
§

fn read_from(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from bytes. Read more
§

fn read_from_prefix(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from the prefix of bytes. Read more
§

fn read_from_suffix(bytes: &[u8]) -> Option<Self>
where Self: Sized,

Reads a copy of Self from the suffix of bytes. Read more
source§

impl FromZeros for if_settings__bindgen_ty_1
where uref<raw_hdlc_proto>: FromZeros, uref<cisco_proto>: FromZeros, uref<fr_proto>: FromZeros, uref<fr_proto_pvc>: FromZeros, uref<fr_proto_pvc_info>: FromZeros, uref<x25_hdlc_proto>: FromZeros, uref<sync_serial_settings>: FromZeros, uref<te1_settings>: FromZeros,

§

fn zero(&mut self)

Overwrites self with zeros. Read more
§

fn new_zeroed() -> Self
where Self: Sized,

Creates an instance of Self from zeroed bytes. Read more
source§

impl Copy for if_settings__bindgen_ty_1

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.