Struct lsp2::SignatureHelpContext
pub struct SignatureHelpContext {
pub trigger_kind: SignatureHelpTriggerKind,
pub trigger_character: Option<String>,
pub is_retrigger: bool,
pub active_signature_help: Option<SignatureHelp>,
}
Fields§
§trigger_kind: SignatureHelpTriggerKind
Action that caused signature help to be triggered.
trigger_character: Option<String>
Character that caused signature help to be triggered.
This is undefined when triggerKind !== SignatureHelpTriggerKind.TriggerCharacter
is_retrigger: bool
true
if signature help was already showing when it was triggered.
Retriggers occur when the signature help is already active and can be caused by actions such as
typing a trigger character, a cursor move, or document content changes.
active_signature_help: Option<SignatureHelp>
The currently active SignatureHelp
.
The activeSignatureHelp
has its SignatureHelp.activeSignature
field updated based on
the user navigating through available signatures.
Trait Implementations§
§impl Clone for SignatureHelpContext
impl Clone for SignatureHelpContext
§fn clone(&self) -> SignatureHelpContext
fn clone(&self) -> SignatureHelpContext
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for SignatureHelpContext
impl Debug for SignatureHelpContext
§impl<'de> Deserialize<'de> for SignatureHelpContext
impl<'de> Deserialize<'de> for SignatureHelpContext
§fn deserialize<__D>(
__deserializer: __D
) -> Result<SignatureHelpContext, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<SignatureHelpContext, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq<SignatureHelpContext> for SignatureHelpContext
impl PartialEq<SignatureHelpContext> for SignatureHelpContext
§fn eq(&self, other: &SignatureHelpContext) -> bool
fn eq(&self, other: &SignatureHelpContext) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for SignatureHelpContext
impl Serialize for SignatureHelpContext
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for SignatureHelpContext
impl StructuralEq for SignatureHelpContext
impl StructuralPartialEq for SignatureHelpContext
Auto Trait Implementations§
impl RefUnwindSafe for SignatureHelpContext
impl Send for SignatureHelpContext
impl Sync for SignatureHelpContext
impl Unpin for SignatureHelpContext
impl UnwindSafe for SignatureHelpContext
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.