pub struct Network {
pub creation_date: Option<f64>,
pub description: Option<String>,
pub framework: Option<String>,
pub framework_attributes: Option<NetworkFrameworkAttributes>,
pub framework_version: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub status: Option<String>,
pub voting_policy: Option<VotingPolicy>,
pub vpc_endpoint_service_name: Option<String>,
}
Expand description
Network configuration properties.
Fields§
§creation_date: Option<f64>
The date and time that the network was created.
description: Option<String>
Attributes of the blockchain framework for the network.
framework: Option<String>
The blockchain framework that the network uses.
framework_attributes: Option<NetworkFrameworkAttributes>
Attributes of 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.
voting_policy: Option<VotingPolicy>
The voting rules for the network to decide if a proposal is accepted.
vpc_endpoint_service_name: Option<String>
The VPC endpoint service name of the VPC endpoint service of the network. Members use the VPC endpoint service name to create a VPC endpoint to access network resources.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Network
impl<'de> Deserialize<'de> for Network
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
impl StructuralPartialEq for Network
Auto Trait Implementations§
impl Freeze for Network
impl RefUnwindSafe for Network
impl Send for Network
impl Sync for Network
impl Unpin for Network
impl UnwindSafe for Network
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