aws_secrets/
types.rs

1//! Library-specific type definitions
2
3/// A `Result` alias where the `Err` case is `aws_secrets::Error`.
4pub type Result<T> = std::result::Result<T, crate::Error>;