Skip to main content

RuntimeSideStats

Struct RuntimeSideStats 

Source
pub struct RuntimeSideStats {
Show 40 fields pub side_id: usize, pub side_name: &'static str, pub reliable_enabled: bool, pub link_local_enabled: bool, pub header_template_enabled: bool, pub max_frame_bytes: usize, pub compact_header_target_bytes: usize, pub side_transport_profile: &'static str, pub ingress_enabled: bool, pub egress_enabled: bool, pub tx_packets: u64, pub tx_bytes: u64, pub rx_packets: u64, pub rx_bytes: u64, pub relayed_tx_packets: u64, pub relayed_tx_bytes: u64, pub relayed_rx_packets: u64, pub relayed_rx_bytes: u64, pub local_delivery_packets: u64, pub tx_retries: u64, pub tx_handler_failures: u64, pub local_handler_failures: u64, pub total_handler_retries: u64, pub side_transport_full_frames: u64, pub side_transport_compact_frames: u64, pub side_transport_compact_delta_frames: u64, pub side_transport_compact_omitted_timestamp_frames: u64, pub side_transport_chunk_frames: u64, pub side_transport_raw_bytes: u64, pub side_transport_wire_bytes: u64, pub side_transport_bytes_saved: u64, pub side_transport_min_compact_overhead_bytes: Option<usize>, pub side_transport_max_compact_overhead_bytes: Option<usize>, pub side_transport_compact_target_misses: u64, pub side_transport_template_evictions: u64, pub side_transport_tx_template_count: usize, pub side_transport_rx_template_count: usize, pub max_side_transport_templates: usize, pub adaptive: AdaptiveLinkStats, pub data_types: Vec<RuntimeTypeStats>,
}

Fields§

§side_id: usize§side_name: &'static str§reliable_enabled: bool§link_local_enabled: bool§header_template_enabled: bool§max_frame_bytes: usize§compact_header_target_bytes: usize§side_transport_profile: &'static str§ingress_enabled: bool§egress_enabled: bool§tx_packets: u64§tx_bytes: u64§rx_packets: u64§rx_bytes: u64§relayed_tx_packets: u64§relayed_tx_bytes: u64§relayed_rx_packets: u64§relayed_rx_bytes: u64§local_delivery_packets: u64§tx_retries: u64§tx_handler_failures: u64§local_handler_failures: u64§total_handler_retries: u64§side_transport_full_frames: u64§side_transport_compact_frames: u64§side_transport_compact_delta_frames: u64§side_transport_compact_omitted_timestamp_frames: u64§side_transport_chunk_frames: u64§side_transport_raw_bytes: u64§side_transport_wire_bytes: u64§side_transport_bytes_saved: u64§side_transport_min_compact_overhead_bytes: Option<usize>§side_transport_max_compact_overhead_bytes: Option<usize>§side_transport_compact_target_misses: u64§side_transport_template_evictions: u64§side_transport_tx_template_count: usize§side_transport_rx_template_count: usize§max_side_transport_templates: usize§adaptive: AdaptiveLinkStats§data_types: Vec<RuntimeTypeStats>

Trait Implementations§

Source§

impl Clone for RuntimeSideStats

Source§

fn clone(&self) -> RuntimeSideStats

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for RuntimeSideStats

Source§

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

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

impl Eq for RuntimeSideStats

Source§

impl PartialEq for RuntimeSideStats

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for RuntimeSideStats

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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>,

Source§

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>,

Source§

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.