pub enum TransactionRequestGasLimit {
String(String),
Number(f64),
}Expand description
TransactionRequestGasLimit : For EVM-based blockchains only. Units of
gas required to process the transaction. Notes: - Only two of the three
arguments can be specified in a single transaction: gasLimit, gasPrice,
and/or networkFee. - Fireblocks recommends using a numeric string for more
precision. Although a number input exists, it is deprecated. For EVM-based
blockchains only. Units of gas required to process the transaction.
Notes: - Only two of the three arguments can be specified in a single
transaction: gasLimit, gasPrice, and/or networkFee. - Fireblocks
recommends using a numeric string for more precision. Although a number
input exists, it is deprecated.
Variants§
Trait Implementations§
Source§impl Clone for TransactionRequestGasLimit
impl Clone for TransactionRequestGasLimit
Source§fn clone(&self) -> TransactionRequestGasLimit
fn clone(&self) -> TransactionRequestGasLimit
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 TransactionRequestGasLimit
impl Debug for TransactionRequestGasLimit
Source§impl Default for TransactionRequestGasLimit
impl Default for TransactionRequestGasLimit
Source§impl<'de> Deserialize<'de> for TransactionRequestGasLimit
impl<'de> Deserialize<'de> for TransactionRequestGasLimit
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 StructuralPartialEq for TransactionRequestGasLimit
Auto Trait Implementations§
impl Freeze for TransactionRequestGasLimit
impl RefUnwindSafe for TransactionRequestGasLimit
impl Send for TransactionRequestGasLimit
impl Sync for TransactionRequestGasLimit
impl Unpin for TransactionRequestGasLimit
impl UnwindSafe for TransactionRequestGasLimit
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