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>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
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 SignatureHelp
impl Send for SignatureHelp
impl Sync for SignatureHelp
impl Unpin for SignatureHelp
impl UnwindSafe for SignatureHelp
Blanket Implementations
Mutably borrows from an owned value. Read more