athena_rs 1.1.0

Database gateway API
Documentation
1
2
3
4
5
6
//! Shared error types for Athena client helpers.
pub use crate::client::backend::BackendError;
pub use crate::client::builder::BuilderError;

/// Alias used when working with Athena client helpers.
pub type ClientResult<T> = Result<T, BackendError>;