Enum languageserver_types::FoldingRangeKind[][src]

pub enum FoldingRangeKind {
    Comment,
    Imports,
    Region,
}

Enum of known range kinds

Variants

Folding range for a comment

Folding range for a imports or includes

Folding range for a region (e.g. #region)

Trait Implementations

impl Debug for FoldingRangeKind
[src]

Formats the value using the given formatter. Read more

impl Eq for FoldingRangeKind
[src]

impl PartialEq for FoldingRangeKind
[src]

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

This method tests for !=.

impl Clone for FoldingRangeKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations