Struct languageserver_types::DocumentOnTypeFormattingParams[][src]

pub struct DocumentOnTypeFormattingParams {
    pub text_document: TextDocumentIdentifier,
    pub position: Position,
    pub ch: String,
    pub options: FormattingOptions,
}

Fields

The document to format.

The position at which this request was sent.

The character that has been typed.

The format options.

Trait Implementations

impl Debug for DocumentOnTypeFormattingParams
[src]

Formats the value using the given formatter. Read more

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