[][src]Struct lsp_types::Unregistration

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

General parameters to unregister a capability.

Fields

id: String

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

method: String

The method / capability to unregister for.

Trait Implementations

impl Eq for Unregistration
[src]

impl PartialEq<Unregistration> for Unregistration
[src]

impl Debug for Unregistration
[src]

impl Serialize for Unregistration
[src]

impl<'de> Deserialize<'de> for Unregistration
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]