[][src]Struct codemap::SpanLoc

pub struct SpanLoc {
    pub file: Arc<File>,
    pub begin: LineCol,
    pub end: LineCol,
}

A file, and a line and column range within it.

Fields

file: Arc<File>begin: LineColend: LineCol

Trait Implementations

impl Clone for SpanLoc[src]

impl Debug for SpanLoc[src]

impl Display for SpanLoc[src]

fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]

Formats the span as filename:start_line:start_column: end_line:end_column, or if the span is zero-length, filename:line:column, with a 1-indexed line and column.

impl Eq for SpanLoc[src]

impl PartialEq<SpanLoc> for SpanLoc[src]

impl StructuralEq for SpanLoc[src]

impl StructuralPartialEq for SpanLoc[src]

Auto Trait Implementations

impl RefUnwindSafe for SpanLoc

impl Send for SpanLoc

impl Sync for SpanLoc

impl Unpin for SpanLoc

impl UnwindSafe for SpanLoc

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> ToString for T where
    T: Display + ?Sized
[src]

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.