pub type SignerResult<T = ()> = Result<T, Box<dyn Error + Send + Sync + 'static>>;Expand description
Result alias for RequestSigner::sign. Boxed errors so signer
implementations can use any error type that satisfies the bound.
Aliased Type§
pub enum SignerResult<T = ()> {
Ok(T),
Err(Box<dyn Error + Sync + Send>),
}