pub struct KernelServiceCore<J: Journal, S: SidecarFederation = InMemorySidecarFederation> { /* private fields */ }Implementations§
Source§impl<J: Journal, S: SidecarFederation> KernelServiceCore<J, S>
impl<J: Journal, S: SidecarFederation> KernelServiceCore<J, S>
pub fn from_parts(journal: J, sidecars: S) -> Self
Source§impl<J, S> KernelServiceCore<J, S>
impl<J, S> KernelServiceCore<J, S>
pub fn from_journal(journal: J) -> Self
Trait Implementations§
Source§impl<J: Debug + Journal, S: Debug + SidecarFederation> Debug for KernelServiceCore<J, S>
impl<J: Debug + Journal, S: Debug + SidecarFederation> Debug for KernelServiceCore<J, S>
Source§impl<J: Journal, S: SidecarFederation> KernelService for KernelServiceCore<J, S>
impl<J: Journal, S: SidecarFederation> KernelService for KernelServiceCore<J, S>
fn append(&mut self, request: AppendRequest) -> Result<AppendResponse, ApiError>
fn history(&self, request: HistoryRequest) -> Result<HistoryResponse, ApiError>
fn current_state( &self, request: CurrentStateRequest, ) -> Result<CurrentStateResponse, ApiError>
fn as_of(&self, request: AsOfRequest) -> Result<AsOfResponse, ApiError>
fn compile_program( &self, request: CompileProgramRequest, ) -> Result<CompileProgramResponse, ApiError>
fn evaluate_program( &mut self, request: EvaluateProgramRequest, ) -> Result<EvaluateProgramResponse, ApiError>
fn explain_tuple( &self, request: ExplainTupleRequest, ) -> Result<ExplainTupleResponse, ApiError>
fn explain_plan( &self, request: ExplainPlanRequest, ) -> Result<ExplainPlanResponse, ApiError>
fn parse_document( &self, request: ParseDocumentRequest, ) -> Result<ParseDocumentResponse, ApiError>
fn run_document( &mut self, request: RunDocumentRequest, ) -> Result<RunDocumentResponse, ApiError>
fn coordination_pilot_report( &mut self, request: CoordinationPilotReportRequest, ) -> Result<CoordinationPilotReport, ApiError>
fn coordination_delta_report( &mut self, request: CoordinationDeltaReportRequest, ) -> Result<CoordinationDeltaReport, ApiError>
fn register_artifact_reference( &mut self, request: RegisterArtifactReferenceRequest, ) -> Result<RegisterArtifactReferenceResponse, ApiError>
fn get_artifact_reference( &self, request: GetArtifactReferenceRequest, ) -> Result<GetArtifactReferenceResponse, ApiError>
fn register_vector_record( &mut self, request: RegisterVectorRecordRequest, ) -> Result<RegisterVectorRecordResponse, ApiError>
fn search_vectors( &self, request: SearchVectorsRequest, ) -> Result<SearchVectorsResponse, ApiError>
Auto Trait Implementations§
impl<J, S> Freeze for KernelServiceCore<J, S>
impl<J, S> RefUnwindSafe for KernelServiceCore<J, S>where
J: RefUnwindSafe,
S: RefUnwindSafe,
impl<J, S> Send for KernelServiceCore<J, S>
impl<J, S> Sync for KernelServiceCore<J, S>
impl<J, S> Unpin for KernelServiceCore<J, S>
impl<J, S> UnwindSafe for KernelServiceCore<J, S>where
J: UnwindSafe,
S: UnwindSafe,
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