[][src]Struct clang::source::Location

pub struct Location<'tu> {
    pub file: Option<File<'tu>>,
    pub line: u32,
    pub column: u32,
    pub offset: u32,
}

The file, line, column, and character offset of a source location.

Fields

file: Option<File<'tu>>

The file of the source location, if it has any.

line: u32

The line of the source location.

column: u32

The column of the source location.

offset: u32

The character offset of the source location.

Trait Implementations

impl<'tu> Clone for Location<'tu>[src]

impl<'tu> Copy for Location<'tu>[src]

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

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

impl<'tu> Hash for Location<'tu>[src]

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

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

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

Auto Trait Implementations

impl<'tu> RefUnwindSafe for Location<'tu>

impl<'tu> !Send for Location<'tu>

impl<'tu> !Sync for Location<'tu>

impl<'tu> Unpin for Location<'tu>

impl<'tu> UnwindSafe for Location<'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.