pub struct SqliteSidecarFederation { /* private fields */ }Implementations§
Trait Implementations§
Source§impl Debug for SqliteSidecarFederation
impl Debug for SqliteSidecarFederation
Source§impl SidecarFederation for SqliteSidecarFederation
impl SidecarFederation for SqliteSidecarFederation
fn register_artifact_reference( &mut self, request: RegisterArtifactReferenceRequest, journal: &JournalCatalog, ) -> Result<RegisterArtifactReferenceResponse, SidecarError>
fn get_artifact_reference( &self, request: GetArtifactReferenceRequest, ) -> Result<GetArtifactReferenceResponse, SidecarError>
fn register_vector_record( &mut self, request: RegisterVectorRecordRequest, journal: &JournalCatalog, ) -> Result<RegisterVectorRecordResponse, SidecarError>
fn search_vectors( &self, request: SearchVectorsRequest, journal: &JournalCatalog, ) -> Result<SearchVectorsResponse, SidecarError>
Auto Trait Implementations§
impl !Freeze for SqliteSidecarFederation
impl !RefUnwindSafe for SqliteSidecarFederation
impl Send for SqliteSidecarFederation
impl !Sync for SqliteSidecarFederation
impl Unpin for SqliteSidecarFederation
impl !UnwindSafe for SqliteSidecarFederation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more