pub trait Sign {
type Error: Send;
// Required method
fn sign(&self, signing_string: &str) -> Result<String, Self::Error>;
}Expand description
Describe the operation of signing a string
This is used by downstream crates for creating HTTP Signatures.