[][src]Struct tower_lsp::Server

pub struct Server<I, O, S = Nothing> { /* fields omitted */ }

Server for processing requests and responses on stdin and stdout.

Methods

impl<I, O> Server<I, O, Nothing> where
    I: AsyncRead + Send + 'static,
    O: AsyncWrite + Send + 'static, 
[src]

pub fn new(stdin: I, stdout: O) -> Self[src]

Creates a new Server with the given stdin and stdout handles.

impl<I, O, S> Server<I, O, S> where
    I: AsyncRead + Send + 'static,
    O: AsyncWrite + Send + 'static,
    S: Stream<Item = String, Error = ()> + Send + 'static, 
[src]

pub fn interleave<T>(self, stream: T) -> Server<I, O, T> where
    T: Stream<Item = String, Error = ()> + Send + 'static, 
[src]

Interleaves the given stream of messages into stdout together with the responses.

pub fn serve<T>(self, service: T) -> impl Future<Item = (), Error = ()> + Send where
    T: Service<Incoming, Response = String> + Send + 'static,
    T::Error: Into<Box<dyn Error + Send + Sync>>,
    T::Future: Send
[src]

Spawns the service with messages read through stdin and responses printed to stdout.

Trait Implementations

impl<I: Debug, O: Debug, S: Debug> Debug for Server<I, O, S>[src]

Auto Trait Implementations

impl<I, O, S> Send for Server<I, O, S> where
    I: Send,
    O: Send,
    S: Send

impl<I, O, S> Unpin for Server<I, O, S> where
    I: Unpin,
    O: Unpin,
    S: Unpin

impl<I, O, S> Sync for Server<I, O, S> where
    I: Sync,
    O: Sync,
    S: Sync

impl<I, O, S> UnwindSafe for Server<I, O, S> where
    I: UnwindSafe,
    O: UnwindSafe,
    S: UnwindSafe

impl<I, O, S> RefUnwindSafe for Server<I, O, S> where
    I: RefUnwindSafe,
    O: RefUnwindSafe,
    S: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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