pub struct Server<C, M, I, S>where
C: Consensus + Send + Sync + 'static,
M: Mempool + Send + Sync + 'static,
I: Info + Send + Sync + 'static,
S: Snapshot + Send + Sync + 'static,{ /* private fields */ }Available on crate feature
sync-api only.Expand description
ABCI Server
Implementations§
Auto Trait Implementations§
impl<C, M, I, S> Freeze for Server<C, M, I, S>
impl<C, M, I, S> !RefUnwindSafe for Server<C, M, I, S>
impl<C, M, I, S> Send for Server<C, M, I, S>
impl<C, M, I, S> Sync for Server<C, M, I, S>
impl<C, M, I, S> Unpin for Server<C, M, I, S>
impl<C, M, I, S> !UnwindSafe for Server<C, M, I, S>
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