[][src]Struct stratum_server::MinerList

pub struct MinerList<CState: Clone + Sync + Send + 'static> {
    pub miners: RwLock<HashMap<SocketAddr, Arc<Connection<CState>>>>,
}

Fields

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

Implementations

impl<CState: Clone + Sync + Send + 'static> MinerList<CState>[src]

pub fn new() -> Self[src]

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

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

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

pub async fn len<'_>(&'_ self) -> usize[src]

Trait Implementations

impl<CState: Default + Clone + Sync + Send + 'static> Default for MinerList<CState>[src]

Auto Trait Implementations

impl<CState> !RefUnwindSafe for MinerList<CState>

impl<CState> Send for MinerList<CState>

impl<CState> Sync for MinerList<CState>

impl<CState> Unpin for MinerList<CState>

impl<CState> !UnwindSafe for MinerList<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, 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>,