pub struct InlayHintsConfig {
pub enabled: bool,
pub up_to_date_text: String,
pub needs_update_text: String,
}Expand description
Configuration for inlay hint display.
This is a simplified version to avoid circular dependencies. The actual type comes from deps-lsp/config.rs.
Fields§
§enabled: bool§up_to_date_text: String§needs_update_text: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for InlayHintsConfig
impl RefUnwindSafe for InlayHintsConfig
impl Send for InlayHintsConfig
impl Sync for InlayHintsConfig
impl Unpin for InlayHintsConfig
impl UnwindSafe for InlayHintsConfig
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