Struct languageserver_types::Registration[][src]

pub struct Registration {
    pub id: String,
    pub method: String,
    pub register_options: Option<Value>,
}

General parameters to to register for a capability.

Fields

The id used to register the request. The id can be used to deregister the request again.

The method / capability to register for.

Options necessary for the registration.

Trait Implementations

impl Debug for Registration
[src]

Formats the value using the given formatter. Read more

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