[][src]Struct tamasfe_lsp_types::SignatureHelpParams

pub struct SignatureHelpParams {
    pub context: Option<SignatureHelpContext>,
    pub text_document_position_params: TextDocumentPositionParams,
    pub work_done_progress_params: WorkDoneProgressParams,
}

Fields

context: Option<SignatureHelpContext>

The signature help context. This is only available if the client specifies to send this using the client capability textDocument.signatureHelp.contextSupport === true

text_document_position_params: TextDocumentPositionParamswork_done_progress_params: WorkDoneProgressParams

Trait Implementations

impl Clone for SignatureHelpParams[src]

impl Debug for SignatureHelpParams[src]

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

impl Eq for SignatureHelpParams[src]

impl PartialEq<SignatureHelpParams> for SignatureHelpParams[src]

impl Serialize for SignatureHelpParams[src]

impl StructuralEq for SignatureHelpParams[src]

impl StructuralPartialEq for SignatureHelpParams[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.