[][src]Struct stratum_server::MinerList

pub struct MinerList<SM: StratumManager> {
    pub miners: Mutex<Vec<Arc<Connection<SM>>>>,
}

Fields

miners: Mutex<Vec<Arc<Connection<SM>>>>

Methods

impl<SM> MinerList<SM> where
    SM: StratumManager
[src]

pub fn new() -> Self[src]

pub async fn add_miner<'_>(&'_ self, miner: Arc<Connection<SM>>) -> Result<()>[src]

pub async fn broadcast_new_job<'_>(
    &'_ self,
    _job: <SM::StratumParams as StratumParams>::Notify
) -> Result<()>
[src]

Trait Implementations

impl<SM: Default + StratumManager> Default for MinerList<SM>[src]

Auto Trait Implementations

impl<SM> !RefUnwindSafe for MinerList<SM>

impl<SM> Send for MinerList<SM> where
    <SM as StratumManager>::AuthManager: Send + Sync,
    <SM as StratumManager>::BlockValidator: Send + Sync,
    <SM as StratumManager>::DataProvider: Send + Sync

impl<SM> Sync for MinerList<SM> where
    <SM as StratumManager>::AuthManager: Send + Sync,
    <SM as StratumManager>::BlockValidator: Send + Sync,
    <SM as StratumManager>::DataProvider: Send + Sync

impl<SM> Unpin for MinerList<SM>

impl<SM> !UnwindSafe for MinerList<SM>

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,