pub enum FixIt<'tu> {
Deletion(SourceRange<'tu>),
Insertion(SourceLocation<'tu>, String),
Replacement(SourceRange<'tu>, String),
}
Expand description
A suggested fix for an issue with a source file.
Variants§
Deletion(SourceRange<'tu>)
Delete a segment of the source file.
Insertion(SourceLocation<'tu>, String)
Insert a string into the source file.
Replacement(SourceRange<'tu>, String)
Replace a segment of the source file with a string.
Trait Implementations§
impl<'tu> Eq for FixIt<'tu>
impl<'tu> StructuralPartialEq for FixIt<'tu>
Auto Trait Implementations§
impl<'tu> Freeze for FixIt<'tu>
impl<'tu> RefUnwindSafe for FixIt<'tu>
impl<'tu> !Send for FixIt<'tu>
impl<'tu> !Sync for FixIt<'tu>
impl<'tu> Unpin for FixIt<'tu>
impl<'tu> UnwindSafe for FixIt<'tu>
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