pub trait RawTx: Sized + Clone {
// Required method
fn raw_hex(self) -> String;
}
Expand description
Used to pass raw txs into the API.
Required Methods§
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.