//! Error and result types for the ambi-memory subsystem.
//!
//! Defines specialised error variants for KV storage, semantic search,
//! serialisation, and summary generation backends.
use Error;
/// All possible errors that can occur during memory operations.
/// A specialised `Result` type for memory operations.
pub type Result<T> = Result;