pub struct SignatureHelpRegistrationOptions {
pub document_selector: Value,
pub retrigger_characters: Option<Vec<String>>,
pub trigger_characters: Option<Vec<String>>,
pub work_done_progress: Option<bool>,
}Fields§
§document_selector: ValueA document selector to identify the scope of the registration. If set to null the document selector provided on the client side will be used.
retrigger_characters: Option<Vec<String>>List of characters that re-trigger signature help.
These trigger characters are only active when signature help is already showing. All trigger characters are also counted as re-trigger characters.
trigger_characters: Option<Vec<String>>The characters that trigger signature help automatically.
work_done_progress: Option<bool>Trait Implementations§
Source§impl Clone for SignatureHelpRegistrationOptions
impl Clone for SignatureHelpRegistrationOptions
Source§fn clone(&self) -> SignatureHelpRegistrationOptions
fn clone(&self) -> SignatureHelpRegistrationOptions
Returns a duplicate 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 moreSource§impl<'de> Deserialize<'de> for SignatureHelpRegistrationOptions
impl<'de> Deserialize<'de> for SignatureHelpRegistrationOptions
Source§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
Source§impl PartialEq for SignatureHelpRegistrationOptions
impl PartialEq for SignatureHelpRegistrationOptions
Source§fn eq(&self, other: &SignatureHelpRegistrationOptions) -> bool
fn eq(&self, other: &SignatureHelpRegistrationOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SignatureHelpRegistrationOptions
Auto Trait Implementations§
impl Freeze for SignatureHelpRegistrationOptions
impl RefUnwindSafe for SignatureHelpRegistrationOptions
impl Send for SignatureHelpRegistrationOptions
impl Sync for SignatureHelpRegistrationOptions
impl Unpin for SignatureHelpRegistrationOptions
impl UnwindSafe for SignatureHelpRegistrationOptions
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