[][src]Struct escargot::format::diagnostic::DiagnosticSpanLine

pub struct DiagnosticSpanLine<'a> {
    pub text: Cow<'a, str>,
    pub highlight_start: usize,
    pub highlight_end: usize,
    // some fields omitted
}

A line of code associated with the Diagnostic

Fields

text: Cow<'a, str>

The line of code associated with the error

highlight_start: usize

Start of the section of the line to highlight. 1-based, character offset in self.text

highlight_end: usize

End of the section of the line to highlight. 1-based, character offset in self.text

Trait Implementations

impl<'a> Clone for DiagnosticSpanLine<'a>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for DiagnosticSpanLine<'a>[src]

impl<'a> Serialize for DiagnosticSpanLine<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for DiagnosticSpanLine<'a>[src]

Auto Trait Implementations

impl<'a> Send for DiagnosticSpanLine<'a>

impl<'a> Sync for DiagnosticSpanLine<'a>

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]