[][src]Struct abci::Server

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

ABCI Server

Implementations

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 fn start(&self, addr: SocketAddr) -> Result<()>[src]

Starts ABCI Server

Auto Trait Implementations

impl<C, M, I> RefUnwindSafe for Server<C, M, I> where
    C: RefUnwindSafe,
    I: RefUnwindSafe,
    M: RefUnwindSafe

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> where
    C: RefUnwindSafe,
    I: RefUnwindSafe,
    M: RefUnwindSafe

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.