[][src]Struct abci::Server

pub struct Server<C, M, I> where
    C: Consensus + 'static,
    M: Mempool + 'static,
    I: Info + 'static, 
{ /* fields omitted */ }

ABCI Server

Methods

impl<C, M, I> Server<C, M, I> where
    C: Consensus + 'static,
    M: Mempool + 'static,
    I: Info + 'static, 
[src]

pub fn new(consensus: C, mempool: M, info: I) -> Self[src]

Creates a new instance of Server

pub async fn run<'_, T>(&'_ self, addr: T) -> Result<()> where
    T: Into<Address>, 
[src]

Starts ABCI server

Note

This is an async function and returns a Future. So, you'll need an executor to run the Future returned from this function. async-std and tokio are two popular options.

Auto Trait Implementations

impl<C, M, I> Send for Server<C, M, I>

impl<C, M, I> Sync for Server<C, M, I>

impl<C, M, I> Unpin for Server<C, M, I>

impl<C, M, I> !UnwindSafe for Server<C, M, I>

impl<C, M, I> !RefUnwindSafe for Server<C, M, I>

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 = !

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

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

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