struct InformationSchemaColumnsBuilder {Show 16 fields
schema: SchemaRef,
catalog_names: StringBuilder,
schema_names: StringBuilder,
table_names: StringBuilder,
column_names: StringBuilder,
ordinal_positions: UInt64Builder,
column_defaults: StringBuilder,
is_nullables: StringBuilder,
data_types: StringBuilder,
character_maximum_lengths: UInt64Builder,
character_octet_lengths: UInt64Builder,
numeric_precisions: UInt64Builder,
numeric_precision_radixes: UInt64Builder,
numeric_scales: UInt64Builder,
datetime_precisions: UInt64Builder,
interval_types: StringBuilder,
}Expand description
Builds the information_schema.COLUMNS table row by row
Columns are based on https://www.postgresql.org/docs/current/infoschema-columns.html
Fields§
§schema: SchemaRef§catalog_names: StringBuilder§schema_names: StringBuilder§table_names: StringBuilder§column_names: StringBuilder§ordinal_positions: UInt64Builder§column_defaults: StringBuilder§is_nullables: StringBuilder§data_types: StringBuilder§character_maximum_lengths: UInt64Builder§character_octet_lengths: UInt64Builder§numeric_precisions: UInt64Builder§numeric_precision_radixes: UInt64Builder§numeric_scales: UInt64Builder§datetime_precisions: UInt64Builder§interval_types: StringBuilderImplementations§
Auto Trait Implementations§
impl Freeze for InformationSchemaColumnsBuilder
impl RefUnwindSafe for InformationSchemaColumnsBuilder
impl Send for InformationSchemaColumnsBuilder
impl Sync for InformationSchemaColumnsBuilder
impl Unpin for InformationSchemaColumnsBuilder
impl UnwindSafe for InformationSchemaColumnsBuilder
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