pub trait SignTransactionOutput {
// Required methods
fn signed_transaction(&self) -> &[u8] ⓘ;
fn verify_signed_transaction<OutputError: Error>(
&self,
) -> Result<(), OutputError>;
}Expand description
Represents a signedTransaction type in JSON that can be deserialized
Required Methods§
fn signed_transaction(&self) -> &[u8] ⓘ
fn verify_signed_transaction<OutputError: Error>( &self, ) -> Result<(), OutputError>
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.