pub enum CompilerSuggestionOperation {
InsertBefore,
InsertAfter,
Remove,
Replace,
}Expand description
Suggestion operations for auto-fixes
Variants§
Trait Implementations§
Source§impl Clone for CompilerSuggestionOperation
impl Clone for CompilerSuggestionOperation
Source§fn clone(&self) -> CompilerSuggestionOperation
fn clone(&self) -> CompilerSuggestionOperation
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 CompilerSuggestionOperation
impl Debug for CompilerSuggestionOperation
Auto Trait Implementations§
impl Freeze for CompilerSuggestionOperation
impl RefUnwindSafe for CompilerSuggestionOperation
impl Send for CompilerSuggestionOperation
impl Sync for CompilerSuggestionOperation
impl Unpin for CompilerSuggestionOperation
impl UnsafeUnpin for CompilerSuggestionOperation
impl UnwindSafe for CompilerSuggestionOperation
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