Struct languageserver_types::FormattingOptions[][src]

pub struct FormattingOptions {
    pub tab_size: u64,
    pub insert_spaces: bool,
    pub properties: HashMap<String, FormattingProperty>,
}

Value-object describing what options formatting should use.

Fields

Size of a tab in spaces.

Prefer spaces over tabs.

Signature for further properties.

Trait Implementations

impl Debug for FormattingOptions
[src]

Formats the value using the given formatter. Read more

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