pub trait KabuTransactionRequest<LDT: KabuDataTypes> {
// Required methods
fn get_to(&self) -> Option<Address>;
fn build_call(to: Address, data: Bytes) -> LDT::TransactionRequest;
}
Required Methods§
fn get_to(&self) -> Option<Address>
fn build_call(to: Address, data: Bytes) -> LDT::TransactionRequest
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.