pub struct DeployTransaction {
pub constructor_calldata: Vec<Felt>,
pub contract_address: Felt,
pub contract_address_salt: Felt,
pub class_hash: Felt,
pub transaction_hash: Felt,
pub version: Felt,
}Fields§
§constructor_calldata: Vec<Felt>§contract_address: Felt§contract_address_salt: Felt§class_hash: Felt§transaction_hash: Felt§version: FeltTrait Implementations§
Source§impl Clone for DeployTransaction
impl Clone for DeployTransaction
Source§fn clone(&self) -> DeployTransaction
fn clone(&self) -> DeployTransaction
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 moreSource§impl Debug for DeployTransaction
impl Debug for DeployTransaction
Source§impl<'de> Deserialize<'de> for DeployTransaction
impl<'de> Deserialize<'de> for DeployTransaction
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeployTransaction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeployTransaction, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl TryFrom<DeployTransaction> for DeployTransaction
impl TryFrom<DeployTransaction> for DeployTransaction
Source§fn try_from(
value: DeployTransaction,
) -> Result<DeployTransaction, <DeployTransaction as TryFrom<DeployTransaction>>::Error>
fn try_from( value: DeployTransaction, ) -> Result<DeployTransaction, <DeployTransaction as TryFrom<DeployTransaction>>::Error>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for DeployTransaction
impl RefUnwindSafe for DeployTransaction
impl Send for DeployTransaction
impl Sync for DeployTransaction
impl Unpin for DeployTransaction
impl UnwindSafe for DeployTransaction
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