Enum clarity_repl::repl::ContractDeployer
source · pub enum ContractDeployer {
Transient,
DefaultDeployer,
LabeledDeployer(String),
Address(String),
ContractIdentifier(QualifiedContractIdentifier),
}Variants§
Transient
DefaultDeployer
LabeledDeployer(String)
Address(String)
ContractIdentifier(QualifiedContractIdentifier)
Trait Implementations§
source§impl Clone for ContractDeployer
impl Clone for ContractDeployer
source§fn clone(&self) -> ContractDeployer
fn clone(&self) -> ContractDeployer
Returns a copy 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 ContractDeployer
impl Debug for ContractDeployer
source§impl<'de> Deserialize<'de> for ContractDeployer
impl<'de> Deserialize<'de> for ContractDeployer
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 ContractDeployer
impl PartialEq for ContractDeployer
source§fn eq(&self, other: &ContractDeployer) -> bool
fn eq(&self, other: &ContractDeployer) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ContractDeployer
impl Serialize for ContractDeployer
impl StructuralPartialEq for ContractDeployer
Auto Trait Implementations§
impl RefUnwindSafe for ContractDeployer
impl Send for ContractDeployer
impl Sync for ContractDeployer
impl Unpin for ContractDeployer
impl UnwindSafe for ContractDeployer
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