Struct lsp_types::SignatureHelp [−][src]
pub struct SignatureHelp {
pub signatures: Vec<SignatureInformation>,
pub active_signature: Option<u32>,
pub active_parameter: Option<u32>,
}Expand description
Signature help represents the signature of something callable. There can be multiple signature but only one active and only one active parameter.
Fields
signatures: Vec<SignatureInformation>One or more signatures.
active_signature: Option<u32>The active signature.
active_parameter: Option<u32>The active parameter of the active signature.
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for SignatureHelpimpl Send for SignatureHelpimpl Sync for SignatureHelpimpl Unpin for SignatureHelpimpl UnwindSafe for SignatureHelpBlanket Implementations
Mutably borrows from an owned value. Read more