pub enum MinerTelemetryStatus {
Matched,
Unmatched,
DuplicateWorkerName,
FetchFailed,
}Expand description
Status of matching a connected miner to discovered management telemetry.
Variants§
Matched
Telemetry was matched to this connected miner.
Unmatched
No discovered miner management interface matched this connection.
DuplicateWorkerName
More than one connected miner used the same worker name, so telemetry was not assigned.
FetchFailed
A matching miner was found, but fetching telemetry from its management interface failed.
Trait Implementations§
Source§impl Clone for MinerTelemetryStatus
impl Clone for MinerTelemetryStatus
Source§fn clone(&self) -> MinerTelemetryStatus
fn clone(&self) -> MinerTelemetryStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for MinerTelemetryStatus
impl ComposeSchema for MinerTelemetryStatus
impl Copy for MinerTelemetryStatus
Source§impl Debug for MinerTelemetryStatus
impl Debug for MinerTelemetryStatus
Source§impl<'de> Deserialize<'de> for MinerTelemetryStatus
impl<'de> Deserialize<'de> for MinerTelemetryStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for MinerTelemetryStatus
Source§impl PartialEq for MinerTelemetryStatus
impl PartialEq for MinerTelemetryStatus
Source§impl Serialize for MinerTelemetryStatus
impl Serialize for MinerTelemetryStatus
impl StructuralPartialEq for MinerTelemetryStatus
Auto Trait Implementations§
impl Freeze for MinerTelemetryStatus
impl RefUnwindSafe for MinerTelemetryStatus
impl Send for MinerTelemetryStatus
impl Sync for MinerTelemetryStatus
impl Unpin for MinerTelemetryStatus
impl UnsafeUnpin for MinerTelemetryStatus
impl UnwindSafe for MinerTelemetryStatus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.