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