Struct lsp_types::InlayHintClientCapabilities
source · pub struct InlayHintClientCapabilities {
pub dynamic_registration: Option<bool>,
pub resolve_support: Option<InlayHintResolveClientCapabilities>,
}
Expand description
Inlay hint client capabilities.
@since 3.17.0
Fields§
§dynamic_registration: Option<bool>
Whether inlay hints support dynamic registration.
resolve_support: Option<InlayHintResolveClientCapabilities>
Indicates which properties a client can resolve lazily on a inlay hint.
Trait Implementations§
source§impl Clone for InlayHintClientCapabilities
impl Clone for InlayHintClientCapabilities
source§fn clone(&self) -> InlayHintClientCapabilities
fn clone(&self) -> InlayHintClientCapabilities
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 moresource§impl Debug for InlayHintClientCapabilities
impl Debug for InlayHintClientCapabilities
source§impl Default for InlayHintClientCapabilities
impl Default for InlayHintClientCapabilities
source§fn default() -> InlayHintClientCapabilities
fn default() -> InlayHintClientCapabilities
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for InlayHintClientCapabilities
impl<'de> Deserialize<'de> for InlayHintClientCapabilities
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 InlayHintClientCapabilities
impl PartialEq for InlayHintClientCapabilities
source§fn eq(&self, other: &InlayHintClientCapabilities) -> bool
fn eq(&self, other: &InlayHintClientCapabilities) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for InlayHintClientCapabilities
impl StructuralPartialEq for InlayHintClientCapabilities
Auto Trait Implementations§
impl Freeze for InlayHintClientCapabilities
impl RefUnwindSafe for InlayHintClientCapabilities
impl Send for InlayHintClientCapabilities
impl Sync for InlayHintClientCapabilities
impl Unpin for InlayHintClientCapabilities
impl UnwindSafe for InlayHintClientCapabilities
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