pub trait Signable {
// Required method
fn signable_bytes(&self) -> Result<Vec<u8>, ProtocolError>;
}Required Methods§
fn signable_bytes(&self) -> Result<Vec<u8>, ProtocolError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".