[][src]Struct stratum_server::MinerList

pub struct MinerList {
    pub miners: RwLock<HashMap<SocketAddr, Arc<Connection>>>,
}

Fields

miners: RwLock<HashMap<SocketAddr, Arc<Connection>>>

Implementations

impl MinerList[src]

pub fn new() -> Self[src]

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

pub async fn remove_miner<'_>(&'_ self, addr: SocketAddr) -> Result<()>[src]

pub async fn get_all_miners<'_>(&'_ self) -> Vec<Arc<Connection>>[src]

Trait Implementations

impl Default for MinerList[src]

Auto Trait Implementations

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> Sealed<T> for T where
    T: ?Sized

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