pub struct PdProcessedRaInfo {
pub num_platform_ra_received: Option<u32>,
pub num_platform_pio_processed: Option<u32>,
pub last_platform_ra_msec: Option<u32>,
/* private fields */
}
Expand description
Platform counters related to processed RA info when DHCPv6 PD is enabled.
Fields§
§num_platform_ra_received: Option<u32>
The number of platform generated RA handled by ApplyPlatformGeneratedRa.
Required.
num_platform_pio_processed: Option<u32>
The number of PIO processed for adding OMR prefixes.
Required.
last_platform_ra_msec: Option<u32>
The duration since the last processed RA message.
Required.
Trait Implementations§
Source§impl Clone for PdProcessedRaInfo
impl Clone for PdProcessedRaInfo
Source§fn clone(&self) -> PdProcessedRaInfo
fn clone(&self) -> PdProcessedRaInfo
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PdProcessedRaInfo
impl Debug for PdProcessedRaInfo
Source§impl<D: ResourceDialect> Decode<PdProcessedRaInfo, D> for PdProcessedRaInfo
impl<D: ResourceDialect> Decode<PdProcessedRaInfo, D> for PdProcessedRaInfo
Source§impl Default for PdProcessedRaInfo
impl Default for PdProcessedRaInfo
Source§fn default() -> PdProcessedRaInfo
fn default() -> PdProcessedRaInfo
Returns the “default value” for a type. Read more
Source§impl<D: ResourceDialect> Encode<PdProcessedRaInfo, D> for &PdProcessedRaInfo
impl<D: ResourceDialect> Encode<PdProcessedRaInfo, D> for &PdProcessedRaInfo
Source§impl PartialEq for PdProcessedRaInfo
impl PartialEq for PdProcessedRaInfo
Source§impl TypeMarker for PdProcessedRaInfo
impl TypeMarker for PdProcessedRaInfo
Source§type Owned = PdProcessedRaInfo
type Owned = PdProcessedRaInfo
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.Source§impl ValueTypeMarker for PdProcessedRaInfo
impl ValueTypeMarker for PdProcessedRaInfo
Source§type Borrowed<'a> = &'a PdProcessedRaInfo
type Borrowed<'a> = &'a PdProcessedRaInfo
The Rust type to use for encoding. This is a particular
Encode<Self>
type cheaply obtainable from &Self::Owned
. There are three cases: Read moreimpl Persistable for PdProcessedRaInfo
impl StructuralPartialEq for PdProcessedRaInfo
Auto Trait Implementations§
impl Freeze for PdProcessedRaInfo
impl RefUnwindSafe for PdProcessedRaInfo
impl Send for PdProcessedRaInfo
impl Sync for PdProcessedRaInfo
impl Unpin for PdProcessedRaInfo
impl UnwindSafe for PdProcessedRaInfo
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
The marker type to use when the body is at the top-level.
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
The marker type to use when the body is nested in a result union.
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)