Struct languageserver_types::DocumentRangeFormattingParams[][src]

pub struct DocumentRangeFormattingParams {
    pub text_document: TextDocumentIdentifier,
    pub range: Range,
    pub options: FormattingOptions,
}

Fields

The document to format.

The range to format

The format options

Trait Implementations

impl Debug for DocumentRangeFormattingParams
[src]

Formats the value using the given formatter. Read more

impl PartialEq for DocumentRangeFormattingParams
[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