[][src]Struct syntex_syntax2::diagnostics::plugin::snippet::Annotation

pub struct Annotation {
    pub start_col: usize,
    pub end_col: usize,
    pub is_primary: bool,
    pub label: Option<String>,
    pub annotation_type: AnnotationType,
}

Fields

start_col: usize

Start column, 0-based indexing -- counting characters, not utf-8 bytes. Note that it is important that this field goes first, so that when we sort, we sort orderings by start column.

end_col: usize

End column within the line (exclusive)

is_primary: bool

Is this annotation derived from primary span

label: Option<String>

Optional label to display adjacent to the annotation.

annotation_type: AnnotationType

Is this a single line, multiline or multiline span minimized down to a smaller span.

Methods

impl Annotation[src]

pub fn is_line(&self) -> bool[src]

Wether this annotation is a vertical line placeholder.

pub fn is_multiline(&self) -> bool[src]

pub fn len(&self) -> usize[src]

pub fn has_label(&self) -> bool[src]

pub fn takes_space(&self) -> bool[src]

Trait Implementations

impl Eq for Annotation[src]

impl Clone for Annotation[src]

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

Performs copy-assignment from source. Read more

impl Debug for Annotation[src]

impl Ord for Annotation[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl PartialEq<Annotation> for Annotation[src]

impl PartialOrd<Annotation> for Annotation[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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