//! Error types for the core engine.
usethiserror::Error;/// Errors returned by shard or engine operations.
#[derive(Debug, Error)]pubenumShardError{/// The target shard is no longer running (channel closed).
#[error("shard unavailable")]
Unavailable,}