athena_rs 3.3.0

Database gateway API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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.
///
/// # Arguments
///
/// * `T` - The type of the result.
///
/// # Returns
///
/// A `ClientResult` containing the result.
///
pub type ClientResult<T> = Result<T, BackendError>;