Struct lsp_async_stub::ServerBuilder
source · pub struct ServerBuilder<W: Clone + 'static> { /* private fields */ }Implementations§
source§impl<W: Clone + 'static> ServerBuilder<W>
impl<W: Clone + 'static> ServerBuilder<W>
pub fn on_notification<N, F>( self, handler: fn(_: Context<W>, _: Params<N::Params>) -> F ) -> Selfwhere N: Notification + 'static, F: Future<Output = ()> + 'static,
pub fn on_request<R, F>( self, handler: fn(_: Context<W>, _: Params<R::Params>) -> F ) -> Selfwhere R: Request + 'static, F: Future<Output = Result<R::Result, Error>> + 'static,
pub fn build(self) -> Server<W>
Auto Trait Implementations§
impl<W> !RefUnwindSafe for ServerBuilder<W>
impl<W> !Send for ServerBuilder<W>
impl<W> !Sync for ServerBuilder<W>
impl<W> Unpin for ServerBuilder<W>
impl<W> !UnwindSafe for ServerBuilder<W>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more