pub trait TempoCallBuilderExt {
// Required methods
fn fee_token(self, fee_token: Address) -> Self;
fn nonce_key(self, nonce_key: U256) -> Self;
}Expand description
Extension trait for [CallBuilder]
Required Methods§
Sourcefn fee_token(self, fee_token: Address) -> Self
fn fee_token(self, fee_token: Address) -> Self
Sets the fee_token field in the TempoTransaction or TxFeeToken transaction to the provided value
Sourcefn nonce_key(self, nonce_key: U256) -> Self
fn nonce_key(self, nonce_key: U256) -> Self
Sets the nonce_key field in the TempoTransaction transaction to the provided value
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.