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

Required methods

Implementors