[][src]Struct terminus_store::store::Store

pub struct Store { /* fields omitted */ }

A store, storing a set of layers and database labels pointing to these layers

Implementations

impl Store[src]

pub fn new<Labels: 'static + LabelStore, Layers: 'static + LayerStore>(
    label_store: Labels,
    layer_store: Layers
) -> Store
[src]

Create a new store from the given label and layer store

pub fn create(
    &self,
    label: &str
) -> impl Future<Item = NamedGraph, Error = Error> + Send
[src]

Create a new database with the given name

If the database already exists, this will return an error

pub fn open(
    &self,
    label: &str
) -> impl Future<Item = Option<NamedGraph>, Error = Error>
[src]

Open an existing database with the given name, or None if it does not exist

pub fn get_layer_from_id(
    &self,
    layer: [u32; 5]
) -> impl Future<Item = Option<StoreLayer>, Error = Error>
[src]

pub fn create_base_layer(
    &self
) -> impl Future<Item = StoreLayerBuilder, Error = Error> + Send
[src]

Create a base layer builder, unattached to any database label

After having committed it, use set_head on a NamedGraph to attach it.

pub fn export_layers(
    &self,
    layer_ids: Box<dyn Iterator<Item = [u32; 5]>>
) -> Vec<u8>
[src]

pub fn import_layers(
    &self,
    pack: &[u8],
    layer_ids: Box<dyn Iterator<Item = [u32; 5]>>
) -> Result<(), Error>
[src]

Trait Implementations

impl Clone for Store[src]

Auto Trait Implementations

impl !RefUnwindSafe for Store

impl Send for Store

impl Sync for Store

impl Unpin for Store

impl !UnwindSafe for Store

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,