pub enum TableProperty {
PropertyAll(PropertyAll),
PropertyComments(PropertyComments),
PropertyCompression(PropertyCompression),
PropertyConstraints(PropertyConstraints),
PropertyDefaults(PropertyDefaults),
PropertyGenerated(PropertyGenerated),
PropertyIdentity(PropertyIdentity),
PropertyIndexes(PropertyIndexes),
PropertyStatistics(PropertyStatistics),
PropertyStorage(PropertyStorage),
}Variants§
PropertyAll(PropertyAll)
PropertyComments(PropertyComments)
PropertyCompression(PropertyCompression)
PropertyConstraints(PropertyConstraints)
PropertyDefaults(PropertyDefaults)
PropertyGenerated(PropertyGenerated)
PropertyIdentity(PropertyIdentity)
PropertyIndexes(PropertyIndexes)
PropertyStatistics(PropertyStatistics)
PropertyStorage(PropertyStorage)
Trait Implementations§
Source§impl AstNode for TableProperty
impl AstNode for TableProperty
fn can_cast(kind: SyntaxKind) -> bool
fn cast(syntax: SyntaxNode) -> Option<Self>
fn syntax(&self) -> &SyntaxNode
fn clone_for_update(&self) -> Selfwhere
Self: Sized,
fn clone_subtree(&self) -> Selfwhere
Self: Sized,
Source§impl Clone for TableProperty
impl Clone for TableProperty
Source§fn clone(&self) -> TableProperty
fn clone(&self) -> TableProperty
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TableProperty
impl Debug for TableProperty
impl Eq for TableProperty
Source§impl From<PropertyAll> for TableProperty
impl From<PropertyAll> for TableProperty
Source§fn from(node: PropertyAll) -> TableProperty
fn from(node: PropertyAll) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyComments> for TableProperty
impl From<PropertyComments> for TableProperty
Source§fn from(node: PropertyComments) -> TableProperty
fn from(node: PropertyComments) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyCompression> for TableProperty
impl From<PropertyCompression> for TableProperty
Source§fn from(node: PropertyCompression) -> TableProperty
fn from(node: PropertyCompression) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyConstraints> for TableProperty
impl From<PropertyConstraints> for TableProperty
Source§fn from(node: PropertyConstraints) -> TableProperty
fn from(node: PropertyConstraints) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyDefaults> for TableProperty
impl From<PropertyDefaults> for TableProperty
Source§fn from(node: PropertyDefaults) -> TableProperty
fn from(node: PropertyDefaults) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyGenerated> for TableProperty
impl From<PropertyGenerated> for TableProperty
Source§fn from(node: PropertyGenerated) -> TableProperty
fn from(node: PropertyGenerated) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyIdentity> for TableProperty
impl From<PropertyIdentity> for TableProperty
Source§fn from(node: PropertyIdentity) -> TableProperty
fn from(node: PropertyIdentity) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyIndexes> for TableProperty
impl From<PropertyIndexes> for TableProperty
Source§fn from(node: PropertyIndexes) -> TableProperty
fn from(node: PropertyIndexes) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyStatistics> for TableProperty
impl From<PropertyStatistics> for TableProperty
Source§fn from(node: PropertyStatistics) -> TableProperty
fn from(node: PropertyStatistics) -> TableProperty
Converts to this type from the input type.
Source§impl From<PropertyStorage> for TableProperty
impl From<PropertyStorage> for TableProperty
Source§fn from(node: PropertyStorage) -> TableProperty
fn from(node: PropertyStorage) -> TableProperty
Converts to this type from the input type.
Source§impl Hash for TableProperty
impl Hash for TableProperty
Source§impl PartialEq for TableProperty
impl PartialEq for TableProperty
impl StructuralPartialEq for TableProperty
Auto Trait Implementations§
impl !RefUnwindSafe for TableProperty
impl !Send for TableProperty
impl !Sync for TableProperty
impl !UnwindSafe for TableProperty
impl Freeze for TableProperty
impl Unpin for TableProperty
impl UnsafeUnpin for TableProperty
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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