//! Optional protocol bridge for external LSP transport.
//!//! The editor intelligence system is in-process first. This module exists as
//! an explicit extension point for protocol adapters.
#[derive(Debug, Default, Clone)]/// Capability flags used by external protocol adapters.
pubstructProtocolCapabilities{/// Whether diagnostics requests are supported.
pubdiagnostics:bool,
/// Whether hover requests are supported.
pubhover:bool,
/// Whether completion requests are supported.
pubcompletion:bool,
/// Whether semantic highlighting is supported.
pubsemantic_highlighting:bool,
}