[][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(&self, ep: impl Global<State, CState>)[src]

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

Trait Implementations

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

Auto Trait Implementations

impl<State, CState> !RefUnwindSafe for StratumServer<State, CState>

impl<State, CState> Send for StratumServer<State, CState> where
    State: Send

impl<State, CState> Sync for StratumServer<State, CState> where
    State: Sync

impl<State, CState> Unpin for StratumServer<State, CState> where
    CState: Unpin,
    State: Unpin

impl<State, CState> !UnwindSafe for StratumServer<State, CState>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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