emberkv-core 0.4.8

Core engine for ember: keyspace, data types, sharding
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Error types for the core engine.

use thiserror::Error;

/// Errors returned by shard or engine operations.
#[derive(Debug, Error)]
pub enum ShardError {
    /// The target shard is no longer running (channel closed).
    #[error("shard unavailable")]
    Unavailable,
}