pub struct CreateTableAnalysisContext<'a> {
pub types: &'a dyn FunctionTypeResolver,
pub schema: &'a dyn SchemaExpressionCatalog,
pub bindings: &'a dyn InferenceBindingScope,
pub inheritance: InheritanceContext<'a>,
pub index_names: &'a dyn IndexNameCatalog,
pub foreign_keys: ForeignKeyDefinitionContext<'a>,
}Fields§
§types: &'a dyn FunctionTypeResolver§schema: &'a dyn SchemaExpressionCatalog§bindings: &'a dyn InferenceBindingScope§inheritance: InheritanceContext<'a>§index_names: &'a dyn IndexNameCatalog§foreign_keys: ForeignKeyDefinitionContext<'a>Auto Trait Implementations§
impl<'a> !RefUnwindSafe for CreateTableAnalysisContext<'a>
impl<'a> !Send for CreateTableAnalysisContext<'a>
impl<'a> !Sync for CreateTableAnalysisContext<'a>
impl<'a> !UnwindSafe for CreateTableAnalysisContext<'a>
impl<'a> Freeze for CreateTableAnalysisContext<'a>
impl<'a> Unpin for CreateTableAnalysisContext<'a>
impl<'a> UnsafeUnpin for CreateTableAnalysisContext<'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