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