pub struct LspMissingServer {
pub language_id: String,
pub file_count: usize,
pub edge_count: usize,
pub install_command: String,
}Expand description
A language server that’s needed but not installed.
Fields§
§language_id: StringLanguage ID (e.g., “rust”, “python”, “typescript”)
file_count: usizeNumber of files in this language
edge_count: usizeNumber of call edges that can’t be refined
install_command: StringSuggested install command
Trait Implementations§
Source§impl Clone for LspMissingServer
impl Clone for LspMissingServer
Source§fn clone(&self) -> LspMissingServer
fn clone(&self) -> LspMissingServer
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 moreAuto Trait Implementations§
impl Freeze for LspMissingServer
impl RefUnwindSafe for LspMissingServer
impl Send for LspMissingServer
impl Sync for LspMissingServer
impl Unpin for LspMissingServer
impl UnsafeUnpin for LspMissingServer
impl UnwindSafe for LspMissingServer
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