struct InformationSchemaRoutinesBuilder {Show 13 fields
schema: SchemaRef,
specific_catalog: StringBuilder,
specific_schema: StringBuilder,
specific_name: StringBuilder,
routine_catalog: StringBuilder,
routine_schema: StringBuilder,
routine_name: StringBuilder,
routine_type: StringBuilder,
is_deterministic: BooleanBuilder,
data_type: StringBuilder,
function_type: StringBuilder,
description: StringBuilder,
syntax_example: StringBuilder,
}Fields§
§schema: SchemaRef§specific_catalog: StringBuilder§specific_schema: StringBuilder§specific_name: StringBuilder§routine_catalog: StringBuilder§routine_schema: StringBuilder§routine_name: StringBuilder§routine_type: StringBuilder§is_deterministic: BooleanBuilder§data_type: StringBuilder§function_type: StringBuilder§description: StringBuilder§syntax_example: StringBuilderImplementations§
Source§impl InformationSchemaRoutinesBuilder
impl InformationSchemaRoutinesBuilder
fn add_routine( &mut self, catalog_name: impl AsRef<str>, schema_name: impl AsRef<str>, routine_name: impl AsRef<str>, routine_type: impl AsRef<str>, is_deterministic: bool, data_type: Option<impl AsRef<str>>, function_type: impl AsRef<str>, description: Option<impl AsRef<str>>, syntax_example: Option<impl AsRef<str>>, )
fn finish(&mut self) -> RecordBatch
Auto Trait Implementations§
impl Freeze for InformationSchemaRoutinesBuilder
impl RefUnwindSafe for InformationSchemaRoutinesBuilder
impl Send for InformationSchemaRoutinesBuilder
impl Sync for InformationSchemaRoutinesBuilder
impl Unpin for InformationSchemaRoutinesBuilder
impl UnwindSafe for InformationSchemaRoutinesBuilder
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