pub struct LocalDevnetDeployment {Show 13 fields
pub manifest_id: String,
pub network_name: String,
pub chain_id: String,
pub rpc_url: String,
pub deployed_at: String,
pub operator_address: String,
pub operator_epoch: u64,
pub delegate_address: String,
pub settlement_token_symbol: String,
pub settlement_token_address: String,
pub contracts: DevnetContracts,
pub mocks: Option<DevnetMocks>,
pub accounts: Option<DevnetAccounts>,
}Fields§
§manifest_id: String§network_name: String§chain_id: String§rpc_url: String§deployed_at: String§operator_address: String§operator_epoch: u64§delegate_address: String§settlement_token_symbol: String§settlement_token_address: String§contracts: DevnetContracts§mocks: Option<DevnetMocks>§accounts: Option<DevnetAccounts>Implementations§
Source§impl LocalDevnetDeployment
impl LocalDevnetDeployment
pub fn from_path(path: impl AsRef<Path>) -> Result<Self, SettlementError>
pub fn into_chain_config(self) -> Result<SettlementChainConfig, SettlementError>
Trait Implementations§
Source§impl Clone for LocalDevnetDeployment
impl Clone for LocalDevnetDeployment
Source§fn clone(&self) -> LocalDevnetDeployment
fn clone(&self) -> LocalDevnetDeployment
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 LocalDevnetDeployment
impl Debug for LocalDevnetDeployment
Source§impl<'de> Deserialize<'de> for LocalDevnetDeployment
impl<'de> Deserialize<'de> for LocalDevnetDeployment
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 Eq for LocalDevnetDeployment
Source§impl PartialEq for LocalDevnetDeployment
impl PartialEq for LocalDevnetDeployment
Source§impl Serialize for LocalDevnetDeployment
impl Serialize for LocalDevnetDeployment
impl StructuralPartialEq for LocalDevnetDeployment
Auto Trait Implementations§
impl Freeze for LocalDevnetDeployment
impl RefUnwindSafe for LocalDevnetDeployment
impl Send for LocalDevnetDeployment
impl Sync for LocalDevnetDeployment
impl Unpin for LocalDevnetDeployment
impl UnsafeUnpin for LocalDevnetDeployment
impl UnwindSafe for LocalDevnetDeployment
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