pub enum TransactionRequestNetworkFee {
String(String),
Number(f64),
}Expand description
TransactionRequestNetworkFee : For EVM-based blockchains only. The total
transaction fee in the blockchain’s largest unit. 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. The total transaction fee in the
blockchain’s largest unit. 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 TransactionRequestNetworkFee
impl Clone for TransactionRequestNetworkFee
Source§fn clone(&self) -> TransactionRequestNetworkFee
fn clone(&self) -> TransactionRequestNetworkFee
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 TransactionRequestNetworkFee
impl Debug for TransactionRequestNetworkFee
Source§impl<'de> Deserialize<'de> for TransactionRequestNetworkFee
impl<'de> Deserialize<'de> for TransactionRequestNetworkFee
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 TransactionRequestNetworkFee
impl PartialEq for TransactionRequestNetworkFee
Source§fn eq(&self, other: &TransactionRequestNetworkFee) -> bool
fn eq(&self, other: &TransactionRequestNetworkFee) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransactionRequestNetworkFee
Auto Trait Implementations§
impl Freeze for TransactionRequestNetworkFee
impl RefUnwindSafe for TransactionRequestNetworkFee
impl Send for TransactionRequestNetworkFee
impl Sync for TransactionRequestNetworkFee
impl Unpin for TransactionRequestNetworkFee
impl UnwindSafe for TransactionRequestNetworkFee
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