pub struct Web3ChainDeployment {
pub chain_id: String,
pub network_name: String,
pub role: Web3ChainRole,
pub deployment_status: String,
pub settlement_token_symbol: String,
pub live_external_addresses: Option<Web3ChainExternalAddresses>,
pub planned_contract_addresses: Option<Web3ChainContractAddresses>,
pub deployed_contract_addresses: Option<Web3ChainContractAddresses>,
pub planned_operator_address: Option<String>,
pub deployed_operator_address: Option<String>,
pub deployment_plan: Option<Web3ChainDeploymentPlan>,
}Fields§
§chain_id: String§network_name: String§role: Web3ChainRole§deployment_status: String§settlement_token_symbol: String§live_external_addresses: Option<Web3ChainExternalAddresses>§planned_contract_addresses: Option<Web3ChainContractAddresses>§deployed_contract_addresses: Option<Web3ChainContractAddresses>§planned_operator_address: Option<String>§deployed_operator_address: Option<String>§deployment_plan: Option<Web3ChainDeploymentPlan>Trait Implementations§
Source§impl Clone for Web3ChainDeployment
impl Clone for Web3ChainDeployment
Source§fn clone(&self) -> Web3ChainDeployment
fn clone(&self) -> Web3ChainDeployment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Web3ChainDeployment
impl Debug for Web3ChainDeployment
Source§impl<'de> Deserialize<'de> for Web3ChainDeployment
impl<'de> Deserialize<'de> for Web3ChainDeployment
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
Auto Trait Implementations§
impl Freeze for Web3ChainDeployment
impl RefUnwindSafe for Web3ChainDeployment
impl Send for Web3ChainDeployment
impl Sync for Web3ChainDeployment
impl Unpin for Web3ChainDeployment
impl UnsafeUnpin for Web3ChainDeployment
impl UnwindSafe for Web3ChainDeployment
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