pub struct IndexApiImpl { /* private fields */ }

Implementations§

source§

impl IndexApiImpl

source

pub fn new( server_config: &Arc<dyn ConfigProxy<Config>>, index_service: &Index ) -> SummaServerResult<IndexApiImpl>

source§

impl IndexApiImpl

source

pub async fn get_index_description( &self, index_holder: &Handler<IndexHolder> ) -> IndexDescription

Trait Implementations§

source§

impl Clone for IndexApiImpl

source§

fn clone(&self) -> IndexApiImpl

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl IndexApi for IndexApiImpl

source§

fn attach_index<'life0, 'async_trait>( &'life0 self, proto_request: Request<AttachIndexRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<AttachIndexResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Attaches index to Summa server. Attaching allows to incorporate and start using of downloaded or network indices
source§

fn commit_index<'life0, 'async_trait>( &'life0 self, proto_request: Request<CommitIndexRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<CommitIndexResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Committing all collected writes to the index
source§

fn copy_documents<'life0, 'async_trait>( &'life0 self, proto_request: Request<CopyDocumentsRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<CopyDocumentsResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Copy documents from one index to another
source§

fn create_index<'life0, 'async_trait>( &'life0 self, proto_request: Request<CreateIndexRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<CreateIndexResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates new index from scratch
source§

fn copy_index<'life0, 'async_trait>( &'life0 self, proto_request: Request<CopyIndexRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<CopyIndexResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Creates new index from scratch
source§

fn delete_documents<'life0, 'async_trait>( &'life0 self, request: Request<DeleteDocumentsRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<DeleteDocumentsResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes single document from the index by its primary key (therefore, index must have primary key)
source§

fn delete_index<'life0, 'async_trait>( &'life0 self, proto_request: Request<DeleteIndexRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<DeleteIndexResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Deletes index and physically removes file in the case of FileEngine
§

type documentsStream = ReceiverStream<Result<DocumentsResponse, Status>>

Server streaming response type for the documents method.
source§

fn documents<'life0, 'async_trait>( &'life0 self, proto_request: Request<DocumentsRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<Self::documentsStream>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Stream of all documents from the index
source§

fn get_indices_aliases<'life0, 'async_trait>( &'life0 self, __arg1: Request<GetIndicesAliasesRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<GetIndicesAliasesResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Gets all existing index aliases
source§

fn get_index<'life0, 'async_trait>( &'life0 self, proto_request: Request<GetIndexRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<GetIndexResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Gets index description
source§

fn get_indices<'life0, 'async_trait>( &'life0 self, __arg1: Request<GetIndicesRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<GetIndicesResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Gets all existing index descriptions
source§

fn index_document_stream<'life0, 'async_trait>( &'life0 self, request: Request<Streaming<IndexDocumentStreamRequest>> ) -> Pin<Box<dyn Future<Output = Result<Response<IndexDocumentStreamResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Adds document to the index in a streaming way
source§

fn index_document<'life0, 'async_trait>( &'life0 self, request: Request<IndexDocumentRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<IndexDocumentResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Adds document to the index
source§

fn merge_segments<'life0, 'async_trait>( &'life0 self, proto_request: Request<MergeSegmentsRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<MergeSegmentsResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Merges multiple segments into a single one. Used for service purposes
source§

fn set_index_alias<'life0, 'async_trait>( &'life0 self, proto_request: Request<SetIndexAliasRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<SetIndexAliasResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Sets or replaces existing index alias
source§

fn vacuum_index<'life0, 'async_trait>( &'life0 self, proto_request: Request<VacuumIndexRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<VacuumIndexResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Removes deletions from all segments
source§

fn warmup_index<'life0, 'async_trait>( &'life0 self, proto_request: Request<WarmupIndexRequest> ) -> Pin<Box<dyn Future<Output = Result<Response<WarmupIndexResponse>, Status>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Loads all hot parts of the index into the memory

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> Fruit for T
where T: Send + Downcast,