pub trait SignWithKey<T> {
// Required method
fn sign_with_key(self, key: &impl SigningAlgorithm) -> Result<T, Error>;
}
Expand description
Allow objects to be signed with a key.
Required Methods§
fn sign_with_key(self, key: &impl SigningAlgorithm) -> Result<T, Error>
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.