pub struct NetworkSummary {
pub creation_date: Option<f64>,
pub description: Option<String>,
pub framework: Option<String>,
pub framework_version: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub status: Option<String>,
}Expand description
A summary of network configuration properties.
Fields§
§creation_date: Option<f64>The date and time that the network was created.
description: Option<String>An optional description of the network.
framework: Option<String>The blockchain framework that the network uses.
framework_version: Option<String>The version of the blockchain framework that the network uses.
id: Option<String>The unique identifier of the network.
name: Option<String>The name of the network.
status: Option<String>The current status of the network.
Trait Implementations§
Source§impl Clone for NetworkSummary
impl Clone for NetworkSummary
Source§fn clone(&self) -> NetworkSummary
fn clone(&self) -> NetworkSummary
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 NetworkSummary
impl Debug for NetworkSummary
Source§impl Default for NetworkSummary
impl Default for NetworkSummary
Source§fn default() -> NetworkSummary
fn default() -> NetworkSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NetworkSummary
impl<'de> Deserialize<'de> for NetworkSummary
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 NetworkSummary
impl PartialEq for NetworkSummary
impl StructuralPartialEq for NetworkSummary
Auto Trait Implementations§
impl Freeze for NetworkSummary
impl RefUnwindSafe for NetworkSummary
impl Send for NetworkSummary
impl Sync for NetworkSummary
impl Unpin for NetworkSummary
impl UnwindSafe for NetworkSummary
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