pub struct ProjectFeaturesConfig {
pub inlay_hints: Option<bool>,
}Expand description
[features] section of .perl-lsp.toml.
Fields§
§inlay_hints: Option<bool>Whether inlay hints are enabled globally. Maps to ServerConfig.inlay_hints_enabled.
Trait Implementations§
Source§impl Clone for ProjectFeaturesConfig
impl Clone for ProjectFeaturesConfig
Source§fn clone(&self) -> ProjectFeaturesConfig
fn clone(&self) -> ProjectFeaturesConfig
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 Debug for ProjectFeaturesConfig
impl Debug for ProjectFeaturesConfig
Source§impl Default for ProjectFeaturesConfig
impl Default for ProjectFeaturesConfig
Source§fn default() -> ProjectFeaturesConfig
fn default() -> ProjectFeaturesConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectFeaturesConfigwhere
ProjectFeaturesConfig: Default,
impl<'de> Deserialize<'de> for ProjectFeaturesConfigwhere
ProjectFeaturesConfig: Default,
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
Auto Trait Implementations§
impl Freeze for ProjectFeaturesConfig
impl RefUnwindSafe for ProjectFeaturesConfig
impl Send for ProjectFeaturesConfig
impl Sync for ProjectFeaturesConfig
impl Unpin for ProjectFeaturesConfig
impl UnsafeUnpin for ProjectFeaturesConfig
impl UnwindSafe for ProjectFeaturesConfig
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