pub struct QueryPipeline { /* private fields */ }Expand description
Transport-agnostic query pipeline.
Encapsulates the full query lifecycle: validate → intercept → compile → execute → intercept.
Use PipelineBuilder to construct an instance.
§Example
ⓘ
use type_bridge_server::{PipelineBuilder, QueryInput};
let pipeline = PipelineBuilder::new(my_executor)
.with_schema_source(my_schema_source)
.with_default_database("my_db")
.build()?;
let output = pipeline.execute_query(QueryInput { ... }).await?;Implementations§
Source§impl QueryPipeline
impl QueryPipeline
Sourcepub async fn execute_query(
&self,
input: QueryInput,
) -> Result<QueryOutput, PipelineError>
pub async fn execute_query( &self, input: QueryInput, ) -> Result<QueryOutput, PipelineError>
Execute a structured (AST-based) query through the full pipeline.
Sourcepub fn validate(
&self,
input: &ValidateInput,
) -> Result<ValidateOutput, PipelineError>
pub fn validate( &self, input: &ValidateInput, ) -> Result<ValidateOutput, PipelineError>
Validate clauses against the loaded schema without executing.
Sourcepub fn schema(&self) -> Option<&TypeSchema>
pub fn schema(&self) -> Option<&TypeSchema>
Get the loaded schema, if any.
Sourcepub fn is_connected(&self) -> bool
pub fn is_connected(&self) -> bool
Check if the backend executor is connected.
Sourcepub fn default_database(&self) -> &str
pub fn default_database(&self) -> &str
Get the default database name.
Auto Trait Implementations§
impl Freeze for QueryPipeline
impl !RefUnwindSafe for QueryPipeline
impl Send for QueryPipeline
impl Sync for QueryPipeline
impl Unpin for QueryPipeline
impl UnsafeUnpin for QueryPipeline
impl !UnwindSafe for QueryPipeline
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request