pub struct LendingPoolTransaction {
pub data: String,
pub value: String,
pub to: String,
pub from: String,
pub gas_price: Option<String>,
pub gas_limit: Option<String>,
pub max_priority_fee_per_gas: Option<String>,
pub max_fee_per_gas: Option<String>,
pub nonce: f64,
pub type: Option<f64>,
pub chain_id: String,
}Fields§
§data: String§value: String§to: String§from: String§gas_price: Option<String>§gas_limit: Option<String>§max_priority_fee_per_gas: Option<String>§max_fee_per_gas: Option<String>§nonce: f64§type: Option<f64>§chain_id: StringImplementations§
Trait Implementations§
Source§impl Clone for LendingPoolTransaction
impl Clone for LendingPoolTransaction
Source§fn clone(&self) -> LendingPoolTransaction
fn clone(&self) -> LendingPoolTransaction
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 LendingPoolTransaction
impl Debug for LendingPoolTransaction
Source§impl Default for LendingPoolTransaction
impl Default for LendingPoolTransaction
Source§fn default() -> LendingPoolTransaction
fn default() -> LendingPoolTransaction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LendingPoolTransaction
impl<'de> Deserialize<'de> for LendingPoolTransaction
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 LendingPoolTransaction
impl PartialEq for LendingPoolTransaction
Source§fn eq(&self, other: &LendingPoolTransaction) -> bool
fn eq(&self, other: &LendingPoolTransaction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LendingPoolTransaction
impl Serialize for LendingPoolTransaction
impl StructuralPartialEq for LendingPoolTransaction
Auto Trait Implementations§
impl Freeze for LendingPoolTransaction
impl RefUnwindSafe for LendingPoolTransaction
impl Send for LendingPoolTransaction
impl Sync for LendingPoolTransaction
impl Unpin for LendingPoolTransaction
impl UnsafeUnpin for LendingPoolTransaction
impl UnwindSafe for LendingPoolTransaction
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