pub struct TestnetDeployConfig {
pub network: Network,
pub rpc_url: &'static str,
pub finality_depth: u32,
pub publication_timeout: u64,
}Expand description
Testnet deployment configuration
Fields§
§network: NetworkBitcoin network (Signet or Testnet3)
rpc_url: &'static strRPC endpoint URL
finality_depth: u32Required confirmations for finality
publication_timeout: u64Publication timeout in seconds
Implementations§
Trait Implementations§
Source§impl Clone for TestnetDeployConfig
impl Clone for TestnetDeployConfig
Source§fn clone(&self) -> TestnetDeployConfig
fn clone(&self) -> TestnetDeployConfig
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 moreAuto Trait Implementations§
impl Freeze for TestnetDeployConfig
impl RefUnwindSafe for TestnetDeployConfig
impl Send for TestnetDeployConfig
impl Sync for TestnetDeployConfig
impl Unpin for TestnetDeployConfig
impl UnsafeUnpin for TestnetDeployConfig
impl UnwindSafe for TestnetDeployConfig
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