[][src]Struct tower_lsp::Server

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

Server for processing requests and responses on standard I/O or TCP.

Implementations

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

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

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

Examples

Initialize with a standard I/O transport:

let stdin = tokio::io::stdin();
let stdout = tokio::io::stdout();
let server = Server::new(stdin, stdout);

Initialize with a TCP transport:

let mut listener = tokio::net::TcpListener::bind("127.0.0.1:9257").await?;
let (stream, _) = listener.accept().await?;
let (read, write) = tokio::io::split(stream);
let server = Server::new(read, write);

impl<I, O, S> Server<I, O, S> where
    I: AsyncRead + Unpin,
    O: AsyncWrite,
    S: Stream<Item = Outgoing>, 
[src]

pub fn interleave<T>(self, stream: T) -> Server<I, O, T> where
    T: Stream<Item = Outgoing>, 
[src]

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

pub async fn serve<T>(self, __arg1: T) where
    T: Service<Incoming, Response = Option<Outgoing>> + Send + 'static,
    T::Error: Into<Box<dyn Error + Send + Sync>>,
    T::Future: Send
[src]

Spawns the service with messages read through stdin and responses written 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> RefUnwindSafe for Server<I, O, S> where
    I: RefUnwindSafe,
    O: RefUnwindSafe,
    S: RefUnwindSafe

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

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

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

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

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, 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.