Enum annotate_snippets::display_list::DisplayRawLine [] [src]

pub enum DisplayRawLine {
    Origin {
        path: String,
        pos: Option<(usize, usize)>,
        header_type: DisplayHeaderType,
    },
    Annotation {
        annotation: Annotation,
        source_aligned: bool,
        continuation: bool,
    },
}

Variants

Fields of Origin

Fields of Annotation

Trait Implementations

impl Debug for DisplayRawLine
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DisplayRawLine
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for DisplayRawLine
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations