Skip to main content

ace_client/
error.rs

1// region: Imports
2
3// endregion: Imports
4
5// region: Client Error
6
7#[derive(Debug, Clone, PartialEq, Eq)]
8pub enum ClientError {
9    /// Request queue is full - cannot enqueue another request. With N=1 this means a request is
10    /// already pending.
11    QueueFull,
12
13    /// The provided frame data is empty.
14    EmptyRequest,
15
16    /// Outbox is full - cannot enqueue outbound frame.
17    OutboxFull,
18}
19
20// endregion: Client Error