Struct languageserver_types::Unregistration[][src]

pub struct Unregistration {
    pub id: String,
    pub method: String,
}

General parameters to unregister a capability.

Fields

The id used to unregister the request or notification. Usually an id provided during the register request.

The method / capability to unregister for.

Trait Implementations

impl Debug for Unregistration
[src]

Formats the value using the given formatter. Read more

impl Eq for Unregistration
[src]

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