[][src]Struct stratum_server::StratumServer

pub struct StratumServer<State, CState> where
    CState: Clone + Send + Sync + 'static, 
{ /* fields omitted */ }

Implementations

impl<State: Clone + Send + Sync + 'static, CState: Clone + Send + Sync + 'static> StratumServer<State, CState>[src]

pub fn builder(
    state: State,
    connection_state: CState
) -> StratumServerBuilder<State, CState>
[src]

pub fn add(&mut self, method: &str, ep: impl Endpoint<State, CState>)[src]

pub fn global(&mut self, ep: impl Global<State, CState>)[src]

pub async fn start(&mut self) -> Result<()>[src]

pub fn get_ready_indicator(&self) -> ReadyIndicator[src]

Auto Trait Implementations

impl<State, CState> !RefUnwindSafe for StratumServer<State, CState>[src]

impl<State, CState> Send for StratumServer<State, CState> where
    State: Send
[src]

impl<State, CState> Sync for StratumServer<State, CState> where
    State: Sync
[src]

impl<State, CState> Unpin for StratumServer<State, CState> where
    CState: Unpin,
    State: Unpin
[src]

impl<State, CState> !UnwindSafe for StratumServer<State, CState>[src]

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> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,