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