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