Trait akd::storage::Storable

source ·
pub trait Storable: Clone + Sync {
    type StorageKey: Clone + Eq + Hash + Send + Sync + Debug;

    fn data_type() -> StorageType;
    fn get_id(&self) -> Self::StorageKey;
    fn get_full_binary_key_id(key: &Self::StorageKey) -> Vec<u8>;
    fn key_from_full_binary(bin: &[u8]) -> Result<Self::StorageKey, String>;

    fn get_full_binary_id(&self) -> Vec<u8> { ... }
}
Expand description

Storable represents an item which can be stored in the storage layer

Required Associated Types

This particular storage will have a key type

Required Methods

Must return a valid storage type

Retrieve an instance of the id of this storable. The combination of the storable’s StorageType and this id are globally unique

Retrieve the full binary version of a key (for comparisons)

Reformat a key from the full-binary specification

Provided Methods

Retrieve the full binary version of a key (for comparisons)

Implementors