pub struct PreparedEvmCall {
pub from_address: String,
pub to_address: String,
pub data: String,
pub gas_limit: Option<u64>,
}Fields§
§from_address: String§to_address: String§data: String§gas_limit: Option<u64>Trait Implementations§
Source§impl Clone for PreparedEvmCall
impl Clone for PreparedEvmCall
Source§fn clone(&self) -> PreparedEvmCall
fn clone(&self) -> PreparedEvmCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PreparedEvmCall
impl Debug for PreparedEvmCall
Source§impl<'de> Deserialize<'de> for PreparedEvmCall
impl<'de> Deserialize<'de> for PreparedEvmCall
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
impl Eq for PreparedEvmCall
Source§impl PartialEq for PreparedEvmCall
impl PartialEq for PreparedEvmCall
Source§impl Serialize for PreparedEvmCall
impl Serialize for PreparedEvmCall
impl StructuralPartialEq for PreparedEvmCall
Auto Trait Implementations§
impl Freeze for PreparedEvmCall
impl RefUnwindSafe for PreparedEvmCall
impl Send for PreparedEvmCall
impl Sync for PreparedEvmCall
impl Unpin for PreparedEvmCall
impl UnsafeUnpin for PreparedEvmCall
impl UnwindSafe for PreparedEvmCall
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