pub struct LanguageServerBinary {
pub path: PathBuf,
pub envs: Option<HashMap<String, String>>,
pub args: Vec<OsString>,
}Expand description
Binary of the language server
path: path to the executableenvs: List of environment variablesargs: List of arguments for starting the process
Fields§
§path: PathBuf§envs: Option<HashMap<String, String>>§args: Vec<OsString>Auto Trait Implementations§
impl Freeze for LanguageServerBinary
impl RefUnwindSafe for LanguageServerBinary
impl Send for LanguageServerBinary
impl Sync for LanguageServerBinary
impl Unpin for LanguageServerBinary
impl UnwindSafe for LanguageServerBinary
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