pub struct NonPersistentReplicatorStats {Show 13 fields
pub connected: Option<bool>,
pub inbound_connected_since: Option<String>,
pub inbound_connection: Option<String>,
pub msg_drop_rate: Option<f64>,
pub msg_rate_expired: Option<f64>,
pub msg_rate_in: Option<f64>,
pub msg_rate_out: Option<f64>,
pub msg_throughput_in: Option<f64>,
pub msg_throughput_out: Option<f64>,
pub outbound_connected_since: Option<String>,
pub outbound_connection: Option<String>,
pub replication_backlog: Option<i64>,
pub replication_delay_in_seconds: Option<i64>,
}Fields§
§connected: Option<bool>§inbound_connected_since: Option<String>§inbound_connection: Option<String>§msg_drop_rate: Option<f64>§msg_rate_expired: Option<f64>§msg_rate_in: Option<f64>§msg_rate_out: Option<f64>§msg_throughput_in: Option<f64>§msg_throughput_out: Option<f64>§outbound_connected_since: Option<String>§outbound_connection: Option<String>§replication_backlog: Option<i64>§replication_delay_in_seconds: Option<i64>Implementations§
Source§impl NonPersistentReplicatorStats
impl NonPersistentReplicatorStats
pub fn new() -> NonPersistentReplicatorStats
Trait Implementations§
Source§impl Clone for NonPersistentReplicatorStats
impl Clone for NonPersistentReplicatorStats
Source§fn clone(&self) -> NonPersistentReplicatorStats
fn clone(&self) -> NonPersistentReplicatorStats
Returns a duplicate 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 NonPersistentReplicatorStats
impl Debug for NonPersistentReplicatorStats
Source§impl Default for NonPersistentReplicatorStats
impl Default for NonPersistentReplicatorStats
Source§fn default() -> NonPersistentReplicatorStats
fn default() -> NonPersistentReplicatorStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NonPersistentReplicatorStats
impl<'de> Deserialize<'de> for NonPersistentReplicatorStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NonPersistentReplicatorStats
impl PartialEq for NonPersistentReplicatorStats
Source§fn eq(&self, other: &NonPersistentReplicatorStats) -> bool
fn eq(&self, other: &NonPersistentReplicatorStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NonPersistentReplicatorStats
Auto Trait Implementations§
impl Freeze for NonPersistentReplicatorStats
impl RefUnwindSafe for NonPersistentReplicatorStats
impl Send for NonPersistentReplicatorStats
impl Sync for NonPersistentReplicatorStats
impl Unpin for NonPersistentReplicatorStats
impl UnwindSafe for NonPersistentReplicatorStats
Blanket Implementations§
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