[][src]Struct terminus_store::layer::ChildLayerFileBuilder

pub struct ChildLayerFileBuilder<F: 'static + FileLoad + FileStore + Clone + Send + Sync> { /* fields omitted */ }

A builder for a child layer.

This builder takes node, predicate and value strings in lexical order through the corresponding add_<thing> methods. When they're all added, into_phase2() is to be called to turn this builder into a second builder that takes triple data.

Implementations

impl<F: 'static + FileLoad + FileStore + Clone + Send + Sync> ChildLayerFileBuilder<F>[src]

pub fn from_files(parent: Arc<dyn Layer>, files: &ChildLayerFiles<F>) -> Self[src]

Create the builder from the given files.

pub fn add_node(
    self,
    node: &str
) -> Box<dyn Future<Item = (u64, Self), Error = Error> + Send>
[src]

Add a node string.

Does nothing if the node already exists in the paretn, and panics if the given node string is not a lexical successor of the previous node string.

pub fn add_predicate(
    self,
    predicate: &str
) -> Box<dyn Future<Item = (u64, Self), Error = Error> + Send>
[src]

Add a predicate string.

Does nothing if the predicate already exists in the paretn, and panics if the given predicate string is not a lexical successor of the previous predicate string.

pub fn add_value(
    self,
    value: &str
) -> Box<dyn Future<Item = (u64, Self), Error = Error> + Send>
[src]

Add a value string.

Does nothing if the value already exists in the paretn, and panics if the given value string is not a lexical successor of the previous value string.

pub fn add_nodes<I: 'static + IntoIterator<Item = String>>(
    self,
    nodes: I
) -> impl Future<Item = (Vec<u64>, Self), Error = Error>
[src]

Add nodes from an iterable.

Panics if the nodes are not in lexical order, or if previous added nodes are a lexical succesor of any of these nodes. Skips any nodes that are already part of the base layer.

pub fn add_predicates<I: 'static + IntoIterator<Item = String>>(
    self,
    predicates: I
) -> impl Future<Item = (Vec<u64>, Self), Error = Error>
[src]

Add predicates from an iterable.

Panics if the predicates are not in lexical order, or if previous added predicates are a lexical succesor of any of these predicates. Skips any predicates that are already part of the base layer.

pub fn add_values<I: 'static + IntoIterator<Item = String>>(
    self,
    values: I
) -> impl Future<Item = (Vec<u64>, Self), Error = Error>
[src]

Add values from an iterable.

Panics if the values are not in lexical order, or if previous added values are a lexical succesor of any of these values. Skips any nodes that are already part of the base layer.

pub fn into_phase2(
    self
) -> impl Future<Item = ChildLayerFileBuilderPhase2<F>, Error = Error>
[src]

Turn this builder into a phase 2 builder that will take triple data.

Auto Trait Implementations

impl<F> !RefUnwindSafe for ChildLayerFileBuilder<F>

impl<F> Send for ChildLayerFileBuilder<F> where
    <F as FileStore>::Write: Send

impl<F> Sync for ChildLayerFileBuilder<F> where
    <F as FileStore>::Write: Sync

impl<F> Unpin for ChildLayerFileBuilder<F> where
    F: Unpin,
    <F as FileStore>::Write: Unpin

impl<F> !UnwindSafe for ChildLayerFileBuilder<F>

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