[][src]Struct terminus_store::store::sync::SyncStore

pub struct SyncStore { /* fields omitted */ }

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

Implementations

impl SyncStore[src]

pub fn wrap(inner: Store) -> Self[src]

wrap an asynchronous Store, running all futures on a lazily-constructed tokio runtime

The runtime will be constructed on the first call to wrap. Any subsequent SyncStore will reuse the same runtime.

pub fn create(&self, label: &str) -> Result<SyncNamedGraph, Error>[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) -> Result<Option<SyncNamedGraph>, 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]
) -> Result<Option<SyncStoreLayer>, Error>
[src]

pub fn create_base_layer(&self) -> Result<SyncStoreLayerBuilder, Error>[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]

Auto Trait Implementations

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, 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>,