[][src]Struct language_reporting::Label

pub struct Label<Span: ReportingSpan> {
    pub span: Span,
    pub message: Option<String>,
    pub style: LabelStyle,
}

A label describing an underlined region of code associated with a diagnostic

Fields

span: Span

The span we are going to include in the final snippet.

message: Option<String>

A message to provide some additional information for the underlined code.

style: LabelStyle

The style to use for the label.

Methods

impl<Span: ReportingSpan> Label<Span>[src]

pub fn new(span: Span, style: LabelStyle) -> Label<Span>[src]

pub fn new_primary(span: Span) -> Label<Span>[src]

pub fn new_secondary(span: Span) -> Label<Span>[src]

pub fn with_message<S: Into<String>>(self, message: S) -> Label<Span>[src]

pub fn message(&self) -> &Option<String>[src]

Trait Implementations

impl<Span: Clone + ReportingSpan> Clone for Label<Span>[src]

impl<Span: Debug + ReportingSpan> Debug for Label<Span>[src]

impl<Span: ReportingSpan> Serialize for Label<Span> where
    Span: Serialize
[src]

impl<'de, Span: ReportingSpan> Deserialize<'de> for Label<Span> where
    Span: Deserialize<'de>, 
[src]

Auto Trait Implementations

impl<Span> Send for Label<Span> where
    Span: Send

impl<Span> Sync for Label<Span> where
    Span: Sync

impl<Span> Unpin for Label<Span> where
    Span: Unpin

impl<Span> UnwindSafe for Label<Span> where
    Span: UnwindSafe

impl<Span> RefUnwindSafe for Label<Span> where
    Span: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

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