Enum annotate_snippets::snippet::AnnotationType [] [src]

pub enum AnnotationType {
    Error,
    Warning,
    Info,
    Note,
    Help,
}

Types of annotations.

Variants

Error annotations are displayed using red color and "^" character.

Warning annotations are displayed using blue color and "-" character.

Trait Implementations

impl From<AnnotationType> for DisplayAnnotationType
[src]

[src]

Performs the conversion.

impl Debug for AnnotationType
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for AnnotationType
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for AnnotationType
[src]

Auto Trait Implementations