Struct syntect::parsing::SyntaxReference[][src]

pub struct SyntaxReference {
    pub name: String,
    pub file_extensions: Vec<String>,
    pub scope: Scope,
    pub first_line_match: Option<String>,
    pub hidden: bool,
    pub variables: HashMap<String, String>,
    // some fields omitted
}

Fields

Trait Implementations

impl Clone for SyntaxReference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SyntaxReference
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations