Struct rune_languageserver::Server[][src]

pub struct Server { /* fields omitted */ }

An lsp server implementation.

Implementations

impl Server[src]

pub fn new(
    output: Output,
    rebuild_tx: Sender<()>,
    context: Context,
    options: Options
) -> Self
[src]

Construct a new server implementation associated with the given output.

pub fn output(&self) -> Output[src]

Get a clone of the server output.

pub async fn rebuild(&self) -> Result<()>[src]

Rebuild the projects.

pub async fn process(&self, incoming: IncomingMessage) -> Result<()>[src]

Process an incoming message.

pub fn request_handler<T, H, O>(&mut self, handler: H) where
    T: Request,
    H: 'static + Copy + Fn(State, Output, T::Params) -> O,
    O: 'static + Future<Output = Result<T::Result>>, 
[src]

Register a request handler.

pub fn notification_handler<T, H, O>(&mut self, handler: H) where
    T: Notification,
    H: 'static + Copy + Fn(State, Output, T::Params) -> O,
    O: 'static + Future<Output = Result<()>>, 
[src]

Register a notification handler.

Auto Trait Implementations

impl !RefUnwindSafe for Server

impl !Send for Server

impl !Sync for Server

impl Unpin for Server

impl !UnwindSafe for Server

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> UnsafeAny for T where
    T: Any