Struct languageserver_types::SynchronizationCapability[][src]

pub struct SynchronizationCapability {
    pub dynamic_registration: Option<bool>,
    pub will_save: Option<bool>,
    pub will_save_wait_until: Option<bool>,
    pub did_save: Option<bool>,
}

Fields

Whether text document synchronization supports dynamic registration.

The client supports sending will save notifications.

The client supports sending a will save request and waits for a response providing text edits which will be applied to the document before it is saved.

The client supports did save notifications.

Trait Implementations

impl Debug for SynchronizationCapability
[src]

Formats the value using the given formatter. Read more

impl Eq for SynchronizationCapability
[src]

impl PartialEq for SynchronizationCapability
[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 SynchronizationCapability
[src]

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

Auto Trait Implementations