pub enum PartitionType {
PartitionDefault(PartitionDefault),
PartitionForValuesFrom(PartitionForValuesFrom),
PartitionForValuesIn(PartitionForValuesIn),
PartitionForValuesWith(PartitionForValuesWith),
}
Variants§
PartitionDefault(PartitionDefault)
PartitionForValuesFrom(PartitionForValuesFrom)
PartitionForValuesIn(PartitionForValuesIn)
PartitionForValuesWith(PartitionForValuesWith)
Trait Implementations§
Source§impl AstNode for PartitionType
impl AstNode for PartitionType
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 PartitionType
impl Clone for PartitionType
Source§fn clone(&self) -> PartitionType
fn clone(&self) -> PartitionType
Returns a duplicate of the value. Read more
1.0.0 · 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 PartitionType
impl Debug for PartitionType
Source§impl From<PartitionDefault> for PartitionType
impl From<PartitionDefault> for PartitionType
Source§fn from(node: PartitionDefault) -> PartitionType
fn from(node: PartitionDefault) -> PartitionType
Converts to this type from the input type.
Source§impl From<PartitionForValuesFrom> for PartitionType
impl From<PartitionForValuesFrom> for PartitionType
Source§fn from(node: PartitionForValuesFrom) -> PartitionType
fn from(node: PartitionForValuesFrom) -> PartitionType
Converts to this type from the input type.
Source§impl From<PartitionForValuesIn> for PartitionType
impl From<PartitionForValuesIn> for PartitionType
Source§fn from(node: PartitionForValuesIn) -> PartitionType
fn from(node: PartitionForValuesIn) -> PartitionType
Converts to this type from the input type.
Source§impl From<PartitionForValuesWith> for PartitionType
impl From<PartitionForValuesWith> for PartitionType
Source§fn from(node: PartitionForValuesWith) -> PartitionType
fn from(node: PartitionForValuesWith) -> PartitionType
Converts to this type from the input type.
Source§impl Hash for PartitionType
impl Hash for PartitionType
Source§impl PartialEq for PartitionType
impl PartialEq for PartitionType
impl Eq for PartitionType
impl StructuralPartialEq for PartitionType
Auto Trait Implementations§
impl Freeze for PartitionType
impl !RefUnwindSafe for PartitionType
impl !Send for PartitionType
impl !Sync for PartitionType
impl Unpin for PartitionType
impl !UnwindSafe for PartitionType
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