pub struct ConnectionStatisticsDto {
pub aggregate_snapshot: Option<ConnectionStatisticsSnapshotDto>,
pub id: Option<String>,
pub node_snapshots: Option<Vec<NodeConnectionStatisticsSnapshotDto>>,
pub stats_last_refreshed: Option<String>,
}Fields§
§aggregate_snapshot: Option<ConnectionStatisticsSnapshotDto>§id: Option<String>§node_snapshots: Option<Vec<NodeConnectionStatisticsSnapshotDto>>§stats_last_refreshed: Option<String>Trait Implementations§
Source§impl Clone for ConnectionStatisticsDto
impl Clone for ConnectionStatisticsDto
Source§fn clone(&self) -> ConnectionStatisticsDto
fn clone(&self) -> ConnectionStatisticsDto
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 ConnectionStatisticsDto
impl Debug for ConnectionStatisticsDto
Source§impl Default for ConnectionStatisticsDto
impl Default for ConnectionStatisticsDto
Source§fn default() -> ConnectionStatisticsDto
fn default() -> ConnectionStatisticsDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ConnectionStatisticsDto
impl<'de> Deserialize<'de> for ConnectionStatisticsDto
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 From<ConnectionStatisticsDto> for ConnectionStatisticsDto
impl From<ConnectionStatisticsDto> for ConnectionStatisticsDto
Source§fn from(v: ConnectionStatisticsDto) -> Self
fn from(v: ConnectionStatisticsDto) -> Self
Converts to this type from the input type.
Source§impl From<ConnectionStatisticsDto> for ConnectionStatisticsDto
impl From<ConnectionStatisticsDto> for ConnectionStatisticsDto
Source§fn from(v: ConnectionStatisticsDto) -> Self
fn from(v: ConnectionStatisticsDto) -> Self
Converts to this type from the input type.
Source§impl From<ConnectionStatisticsDto> for ConnectionStatisticsDto
impl From<ConnectionStatisticsDto> for ConnectionStatisticsDto
Source§fn from(v: ConnectionStatisticsDto) -> Self
fn from(v: ConnectionStatisticsDto) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConnectionStatisticsDto
impl RefUnwindSafe for ConnectionStatisticsDto
impl Send for ConnectionStatisticsDto
impl Sync for ConnectionStatisticsDto
impl Unpin for ConnectionStatisticsDto
impl UnsafeUnpin for ConnectionStatisticsDto
impl UnwindSafe for ConnectionStatisticsDto
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