Struct languageserver_types::DocumentOnTypeFormattingOptions[][src]

pub struct DocumentOnTypeFormattingOptions {
    pub first_trigger_character: String,
    pub more_trigger_character: Option<Vec<String>>,
}

Format document on type options

Fields

A character on which formatting should be triggered, like }.

More trigger characters.

Trait Implementations

impl Debug for DocumentOnTypeFormattingOptions
[src]

Formats the value using the given formatter. Read more

impl Eq for DocumentOnTypeFormattingOptions
[src]

impl PartialEq for DocumentOnTypeFormattingOptions
[src]

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

This method tests for !=.

impl Default for DocumentOnTypeFormattingOptions
[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations