Expand description
Error types and Result alias.
Error types for the ClickHouse client.
All fallible operations in this crate return Result<T>, which is an
alias for std::result::Result<T, Error>.
Enums§
- Error
- Errors that can occur when using the ClickHouse client.
Type Aliases§
- Result
- A type alias for
std::result::Result<T, Error>.