struct InformationSchemaParametersBuilder {
schema: SchemaRef,
specific_catalog: StringBuilder,
specific_schema: StringBuilder,
specific_name: StringBuilder,
ordinal_position: UInt64Builder,
parameter_mode: StringBuilder,
parameter_name: StringBuilder,
data_type: StringBuilder,
parameter_default: StringBuilder,
is_variadic: BooleanBuilder,
rid: UInt8Builder,
}Fields§
§schema: SchemaRef§specific_catalog: StringBuilder§specific_schema: StringBuilder§specific_name: StringBuilder§ordinal_position: UInt64Builder§parameter_mode: StringBuilder§parameter_name: StringBuilder§data_type: StringBuilder§parameter_default: StringBuilder§is_variadic: BooleanBuilder§rid: UInt8BuilderImplementations§
Source§impl InformationSchemaParametersBuilder
impl InformationSchemaParametersBuilder
fn add_parameter( &mut self, specific_catalog: impl AsRef<str>, specific_schema: impl AsRef<str>, specific_name: impl AsRef<str>, ordinal_position: u64, parameter_mode: impl AsRef<str>, parameter_name: Option<impl AsRef<str>>, data_type: impl AsRef<str>, parameter_default: Option<impl AsRef<str>>, is_variadic: bool, rid: u8, )
fn finish(&mut self) -> RecordBatch
Auto Trait Implementations§
impl Freeze for InformationSchemaParametersBuilder
impl RefUnwindSafe for InformationSchemaParametersBuilder
impl Send for InformationSchemaParametersBuilder
impl Sync for InformationSchemaParametersBuilder
impl Unpin for InformationSchemaParametersBuilder
impl UnwindSafe for InformationSchemaParametersBuilder
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