pub struct ProcedureCallAnalysis<'a> { /* private fields */ }Expand description
The syntax metadata needed before the caller captures the scope used for result description.
Implementations§
Source§impl<'a> ProcedureCallAnalysis<'a>
impl<'a> ProcedureCallAnalysis<'a>
pub fn new(arguments: &'a [ExpressionPlan]) -> Result<Self, SQLError>
pub fn result_schema( &self, name: &str, overloads: &RoutineOverloadContext<'_>, types: &dyn RoutineTypeCatalog, infer: &mut dyn FnMut(&ExpressionPlan) -> Result<Option<ColumnType>, SQLError>, ) -> Result<Option<RowSchema>, SQLError>
Auto Trait Implementations§
impl<'a> Freeze for ProcedureCallAnalysis<'a>
impl<'a> RefUnwindSafe for ProcedureCallAnalysis<'a>
impl<'a> Send for ProcedureCallAnalysis<'a>
impl<'a> Sync for ProcedureCallAnalysis<'a>
impl<'a> Unpin for ProcedureCallAnalysis<'a>
impl<'a> UnsafeUnpin for ProcedureCallAnalysis<'a>
impl<'a> UnwindSafe for ProcedureCallAnalysis<'a>
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> ErasedDestructor for Twhere
T: 'static,
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