pub type Result<T> = Result<T, ClientError>;Expand description
Result type for SDK operations.
This is a convenience type alias for SDK operations that can fail.
It uses ClientError as the error type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(ClientError),
}