pub trait SigningProvider: Debug {
// Required methods
fn client_email(&self) -> impl Future<Output = Result<String>> + Send;
fn sign(&self, content: &[u8]) -> impl Future<Output = Result<Bytes>> + Send;
}Expand description
A trait for types that can sign content.
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.