[][src]Enum clang::diagnostic::FixIt

pub enum FixIt<'tu> {
    Deletion(SourceRange<'tu>),
    Insertion(SourceLocation<'tu>, String),
    Replacement(SourceRange<'tu>, String),
}

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> Clone for FixIt<'tu>[src]

impl<'tu> Debug for FixIt<'tu>[src]

impl<'tu> Eq for FixIt<'tu>[src]

impl<'tu> PartialEq<FixIt<'tu>> for FixIt<'tu>[src]

impl<'tu> StructuralEq for FixIt<'tu>[src]

impl<'tu> StructuralPartialEq for FixIt<'tu>[src]

Auto Trait Implementations

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.