Struct fuels_programs::contract::DeployConfiguration
source · pub struct DeployConfiguration { /* private fields */ }Expand description
Configuration for contract deployment
Implementations§
source§impl DeployConfiguration
impl DeployConfiguration
pub fn new( tx_parameters: TxParameters, storage: StorageConfiguration, configurables: impl Into<Configurables>, salt: impl Into<Salt> ) -> Self
pub fn set_tx_parameters(self, tx_parameters: TxParameters) -> Self
pub fn set_storage_configuration(self, storage: StorageConfiguration) -> Self
pub fn set_configurables(self, configurables: impl Into<Configurables>) -> Self
pub fn set_salt(self, salt: impl Into<Salt>) -> Self
Trait Implementations§
source§impl Clone for DeployConfiguration
impl Clone for DeployConfiguration
source§fn clone(&self) -> DeployConfiguration
fn clone(&self) -> DeployConfiguration
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 DeployConfiguration
impl Debug for DeployConfiguration
source§impl Default for DeployConfiguration
impl Default for DeployConfiguration
source§fn default() -> DeployConfiguration
fn default() -> DeployConfiguration
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for DeployConfiguration
impl Send for DeployConfiguration
impl Sync for DeployConfiguration
impl Unpin for DeployConfiguration
impl UnwindSafe for DeployConfiguration
Blanket Implementations§
source§impl<T> AnyDebug for Twhere
T: Any + Debug,
impl<T> AnyDebug for Twhere T: Any + Debug,
source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
Returns a reference to the underlying type as
Any.