pub trait Hover {
// Required method
fn hover(&mut self, cx: &HoverCx) -> Option<HoverInfo>;
}Expand description
The provider seam the integrating app implements to answer hover queries.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".