Skip to main content

Crate frp_loom

Crate frp_loom 

Source
Expand description

Storage traits and in-memory implementations for the frp graph layer.

Provides AtomStore, BlockStore, and EdgeStore traits plus HashMap-backed in-memory implementations (behind the in-memory feature flag). Also exports Query/QueryResult for pagination and StoreError.

Re-exports§

pub use error::StoreError;
pub use memory::HasAtomId;
pub use memory::HasBlockId;
pub use memory::HasEdgeId;
pub use memory::InMemoryAtomStore;
pub use memory::InMemoryBlockStore;
pub use memory::InMemoryEdgeStore;
pub use query::Query;
pub use query::QueryResult;
pub use store::AtomStore;
pub use store::BlockStore;
pub use store::EdgeStore;

Modules§

error
memory
In-memory AtomStore, BlockStore, and EdgeStore implementations.
query
store