Struct pallet::StoreBuilder[][src]

pub struct StoreBuilder<T: DocumentLike> { /* fields omitted */ }

Builder for Store

Implementations

impl<T: DocumentLike> StoreBuilder<T>[src]

pub fn with_db(mut self: Self, db: Db) -> Self[src]

Shortcut method to set the sled::Db for the tree_builder

pub fn with_index_dir<I: Into<PathBuf>>(mut self: Self, index_dir: I) -> Self[src]

Shortcut method to set the index dir for the index_builder

pub fn with_tree_builder(mut self: Self, tree_builder: TreeBuilder) -> Self[src]

Set the tree_builder to be used.

pub fn with_index_builder(
    mut self: Self,
    index_builder: IndexBuilder<T::IndexFieldsType>
) -> Self
[src]

Set the index_builder to be used.

pub fn finish(self) -> Result<Store<T>>[src]

Convert into finished Store

Trait Implementations

impl<T: DocumentLike> Default for StoreBuilder<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for StoreBuilder<T>[src]

impl<T> !Send for StoreBuilder<T>[src]

impl<T> !Sync for StoreBuilder<T>[src]

impl<T> Unpin for StoreBuilder<T>[src]

impl<T> !UnwindSafe for StoreBuilder<T>[src]

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> Downcast for T where
    T: Any

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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