Struct languageserver_types::TextDocumentRegistrationOptions[][src]

pub struct TextDocumentRegistrationOptions {
    pub document_selector: Option<DocumentSelector>,
}

Since most of the registration options require to specify a document selector there is a base interface that can be used.

Fields

A document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.

Trait Implementations

impl Debug for TextDocumentRegistrationOptions
[src]

Formats the value using the given formatter. Read more

impl Eq for TextDocumentRegistrationOptions
[src]

impl PartialEq for TextDocumentRegistrationOptions
[src]

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

This method tests for !=.

Auto Trait Implementations