pub enum ReferencingTable {
NewTable(NewTable),
OldTable(OldTable),
}Variants§
Trait Implementations§
Source§impl AstNode for ReferencingTable
impl AstNode for ReferencingTable
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 ReferencingTable
impl Clone for ReferencingTable
Source§fn clone(&self) -> ReferencingTable
fn clone(&self) -> ReferencingTable
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 ReferencingTable
impl Debug for ReferencingTable
impl Eq for ReferencingTable
Source§impl From<NewTable> for ReferencingTable
impl From<NewTable> for ReferencingTable
Source§fn from(node: NewTable) -> ReferencingTable
fn from(node: NewTable) -> ReferencingTable
Converts to this type from the input type.
Source§impl From<OldTable> for ReferencingTable
impl From<OldTable> for ReferencingTable
Source§fn from(node: OldTable) -> ReferencingTable
fn from(node: OldTable) -> ReferencingTable
Converts to this type from the input type.
Source§impl Hash for ReferencingTable
impl Hash for ReferencingTable
Source§impl PartialEq for ReferencingTable
impl PartialEq for ReferencingTable
impl StructuralPartialEq for ReferencingTable
Auto Trait Implementations§
impl !RefUnwindSafe for ReferencingTable
impl !Send for ReferencingTable
impl !Sync for ReferencingTable
impl !UnwindSafe for ReferencingTable
impl Freeze for ReferencingTable
impl Unpin for ReferencingTable
impl UnsafeUnpin for ReferencingTable
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