pub struct ClientSignatureInformationOptions {
pub documentation_format: Option<Vec<MarkupKind>>,
pub parameter_information: Option<ClientSignatureParameterInformationOptions>,
pub active_parameter_support: Option<bool>,
pub no_active_parameter_support: Option<bool>,
}Expand description
@since 3.18.0
Fields§
§documentation_format: Option<Vec<MarkupKind>>Client supports the following content formats for the documentation property. The order describes the preferred format of the client.
parameter_information: Option<ClientSignatureParameterInformationOptions>Client capabilities specific to parameter information.
active_parameter_support: Option<bool>The client supports the activeParameter property on SignatureInformation
literal.
@since 3.16.0
no_active_parameter_support: Option<bool>The client supports the activeParameter property on
SignatureHelp/SignatureInformation being set to null to
indicate that no parameter should be active.
@since 3.18.0 @proposed
Trait Implementations§
Source§impl Clone for ClientSignatureInformationOptions
impl Clone for ClientSignatureInformationOptions
Source§fn clone(&self) -> ClientSignatureInformationOptions
fn clone(&self) -> ClientSignatureInformationOptions
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 Default for ClientSignatureInformationOptions
impl Default for ClientSignatureInformationOptions
Source§fn default() -> ClientSignatureInformationOptions
fn default() -> ClientSignatureInformationOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClientSignatureInformationOptions
impl<'de> Deserialize<'de> for ClientSignatureInformationOptions
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 ClientSignatureInformationOptions
impl PartialEq for ClientSignatureInformationOptions
Source§fn eq(&self, other: &ClientSignatureInformationOptions) -> bool
fn eq(&self, other: &ClientSignatureInformationOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ClientSignatureInformationOptions
impl StructuralPartialEq for ClientSignatureInformationOptions
Auto Trait Implementations§
impl Freeze for ClientSignatureInformationOptions
impl RefUnwindSafe for ClientSignatureInformationOptions
impl Send for ClientSignatureInformationOptions
impl Sync for ClientSignatureInformationOptions
impl Unpin for ClientSignatureInformationOptions
impl UnwindSafe for ClientSignatureInformationOptions
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