/// Options for running the LSP server.
#[derive(Default)]#[cfg_attr(feature ="clap",derive(clap::Args))]pubstructLspArgs{/// Use standard input/output for LSP transport.
////// This is the default, and ignored.
/// This argument is recommended by the LSP specification.
#[cfg_attr(feature ="clap",arg(long, hide = true))]pubstdio:bool,
}