Trait LspExt

Source
pub trait LspExt<T>: Sealed {
    // Required methods
    fn into_lsp(self) -> T;
    fn from_lsp(val: T) -> Self;
}

Required Methods§

Source

fn into_lsp(self) -> T

Source

fn from_lsp(val: T) -> Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§