1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
/// A document highlight kind.
#[derive(Debug, Serialize)]
pub enum DocumentHighlightKind {
    /// A textual occurrence.
    Text = 1,

    /// Read-access of a symbol, like reading a variable.
    Read = 2,

    /// Write-access of a symbol, like writing to a variable.
    Write = 3,
}