Expand description
Error types for the Chalk client SDK.
This module defines a single error enum, ChalkClientError, that covers
everything that can go wrong when using the client — from configuration
mistakes to network failures to server-side errors.
Enums§
- Chalk
Client Error - Everything that can go wrong when using the Chalk client.
Type Aliases§
- Result
- A convenience type alias so we can write
Result<T>instead ofstd::result::Result<T, ChalkClientError>everywhere in this crate.