[][src]Struct pallet::Store

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

The document store, contains the sled::Tree and tantivy::Index.

Methods

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

pub fn builder() -> StoreBuilder<T>[src]

Builder for a new Store

pub fn default_search_fields(&self) -> Vec<Field>[src]

The fields that should be used as default search fields in a search.

pub fn index_writer(&self) -> Result<IndexWriter>[src]

Get a tantivy::IndexWriter from the stored tantivy::Index.

pub fn create(&self, inner: &T) -> Result<u64>[src]

Create a new Document, returns the persisted document's id.

pub fn create_multi(&self, inners: &[T]) -> Result<Vec<u64>>[src]

Create new Documents, returns the persisted documents' ids.

pub fn update(&self, doc: &Document<T>) -> Result<()>[src]

Update a given Document.

pub fn update_multi(&self, docs: &[Document<T>]) -> Result<()>[src]

Update given Documents.

pub fn delete(&self, id: u64) -> Result<()>[src]

Delete a Document by id.

pub fn delete_multi(&self, ids: &[u64]) -> Result<()>[src]

Delete Documents by ids.

pub fn search(&self, query_str: &str) -> Result<Results<T>>[src]

Search the datastore, using the query language provided by tantivy.

pub fn all(&self) -> Result<Vec<Document<T>>>[src]

Get all Documents from the datastore. Does not use the search index.

pub fn index_all(&self) -> Result<()>[src]

Index (or re-index) all Documents in the datastore.

pub fn find(&self, id: u64) -> Result<Option<Document<T>>>[src]

Find a single Document by its id. Does not use the search index.

Auto Trait Implementations

impl<T> !RefUnwindSafe for Store<T>

impl<T> !Send for Store<T>

impl<T> Sync for Store<T> where
    <T as DocumentLike>::IndexFieldsType: Sync

impl<T> Unpin for Store<T> where
    <T as DocumentLike>::IndexFieldsType: Unpin

impl<T> !UnwindSafe for Store<T>

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> DowncastSync for T where
    T: Send + Sync + Any

impl<T> Erased for T

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

impl<T> Fruit for T where
    T: Send + Downcast, 
[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>,