pub trait HoverProviderImpl: ObjectImpl {
    // Provided method
    fn populate_future(
        &self,
        context: &HoverContext,
        display: &HoverDisplay,
    ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'static>> { ... }
}

Provided Methods§

source

fn populate_future( &self, context: &HoverContext, display: &HoverDisplay, ) -> Pin<Box<dyn Future<Output = Result<(), Error>> + 'static>>

Object Safety§

This trait is not object safe.

Implementors§