pub type Result<T> = Result<T, SecretSpecError>;Expand description
A type alias for Result<T, SecretSpecError>
This provides a convenient shorthand for functions that return
a result with a SecretSpecError as the error type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(SecretSpecError),
}