#[non_exhaustive]
pub struct Inet6DevConf {
Show 59 fields pub forwarding: i32, pub hoplimit: i32, pub mtu6: i32, pub accept_ra: i32, pub accept_redirects: i32, pub autoconf: i32, pub dad_transmits: i32, pub rtr_solicits: i32, pub rtr_solicit_interval: i32, pub rtr_solicit_delay: i32, pub use_tempaddr: i32, pub temp_valid_lft: i32, pub temp_prefered_lft: i32, pub regen_max_retry: i32, pub max_desync_factor: i32, pub max_addresses: i32, pub force_mld_version: i32, pub accept_ra_defrtr: i32, pub accept_ra_pinfo: i32, pub accept_ra_rtr_pref: i32, pub rtr_probe_interval: i32, pub accept_ra_rt_info_max_plen: i32, pub proxy_ndp: i32, pub optimistic_dad: i32, pub accept_source_route: i32, pub mc_forwarding: i32, pub disable_ipv6: i32, pub accept_dad: i32, pub force_tllao: i32, pub ndisc_notify: i32, pub mldv1_unsolicited_report_interval: i32, pub mldv2_unsolicited_report_interval: i32, pub suppress_frag_ndisc: i32, pub accept_ra_from_local: i32, pub use_optimistic: i32, pub accept_ra_mtu: i32, pub stable_secret: i32, pub use_oif_addrs_only: i32, pub accept_ra_min_hop_limit: i32, pub ignore_routes_with_linkdown: i32, pub drop_unicast_in_l2_multicast: i32, pub drop_unsolicited_na: i32, pub keep_addr_on_down: i32, pub rtr_solicit_max_interval: i32, pub seg6_enabled: i32, pub seg6_require_hmac: i32, pub enhanced_dad: i32, pub addr_gen_mode: i32, pub disable_policy: i32, pub accept_ra_rt_info_min_plen: i32, pub ndisc_tclass: i32, pub rpl_seg_enabled: i32, pub ra_defrtr_metric: i32, pub ioam6_enabled: i32, pub ioam6_id: i32, pub ioam6_id_wide: i32, pub ndisc_evict_nocarrier: i32, pub accept_untracked_na: i32, pub accept_ra_min_lft: i32,
}

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§forwarding: i32§hoplimit: i32§mtu6: i32§accept_ra: i32§accept_redirects: i32§autoconf: i32§dad_transmits: i32§rtr_solicits: i32§rtr_solicit_interval: i32§rtr_solicit_delay: i32§use_tempaddr: i32§temp_valid_lft: i32§temp_prefered_lft: i32§regen_max_retry: i32§max_desync_factor: i32§max_addresses: i32§force_mld_version: i32§accept_ra_defrtr: i32§accept_ra_pinfo: i32§accept_ra_rtr_pref: i32§rtr_probe_interval: i32§accept_ra_rt_info_max_plen: i32§proxy_ndp: i32§optimistic_dad: i32§accept_source_route: i32§mc_forwarding: i32§disable_ipv6: i32§accept_dad: i32§force_tllao: i32§ndisc_notify: i32§mldv1_unsolicited_report_interval: i32§mldv2_unsolicited_report_interval: i32§suppress_frag_ndisc: i32§accept_ra_from_local: i32§use_optimistic: i32§accept_ra_mtu: i32§stable_secret: i32§use_oif_addrs_only: i32§accept_ra_min_hop_limit: i32§ignore_routes_with_linkdown: i32§drop_unicast_in_l2_multicast: i32§drop_unsolicited_na: i32§keep_addr_on_down: i32§rtr_solicit_max_interval: i32§seg6_enabled: i32§seg6_require_hmac: i32§enhanced_dad: i32§addr_gen_mode: i32§disable_policy: i32§accept_ra_rt_info_min_plen: i32§ndisc_tclass: i32§rpl_seg_enabled: i32§ra_defrtr_metric: i32§ioam6_enabled: i32§ioam6_id: i32§ioam6_id_wide: i32§ndisc_evict_nocarrier: i32§accept_untracked_na: i32§accept_ra_min_lft: i32

Trait Implementations§

source§

impl Clone for Inet6DevConf

source§

fn clone(&self) -> Inet6DevConf

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 Debug for Inet6DevConf

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Emitable for Inet6DevConf

source§

fn buffer_len(&self) -> usize

Return the length of the serialized data.
source§

fn emit(&self, buffer: &mut [u8])

Serialize this types and write the serialized data into the given buffer. Read more
source§

impl<T: AsRef<[u8]>> Parseable<Inet6DevConfBuffer<T>> for Inet6DevConf

§

type Error = DecodeError

source§

fn parse(buf: &Inet6DevConfBuffer<T>) -> Result<Self, DecodeError>

Deserialize the current type.
source§

impl PartialEq for Inet6DevConf

source§

fn eq(&self, other: &Inet6DevConf) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Inet6DevConf

source§

impl Eq for Inet6DevConf

source§

impl StructuralPartialEq for Inet6DevConf

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.