pub struct HashrateReward {
pub loyalty_points: u64,
pub skill_points: u64,
pub total: u64,
}Expand description
The reward one settled play would credit, split into its channels for the
emitted event, as computed by hashrate_reward. loyalty_points + skill_points == total by construction.
Fields§
§loyalty_points: u64α·m channel contribution (absorbs the rounding remainder).
skill_points: u64β·N/n channel contribution.
total: u64Total points that would be added to Miner::hashrate_amount.
Trait Implementations§
Source§impl Clone for HashrateReward
impl Clone for HashrateReward
Source§fn clone(&self) -> HashrateReward
fn clone(&self) -> HashrateReward
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 moreimpl Copy for HashrateReward
Source§impl Debug for HashrateReward
impl Debug for HashrateReward
Source§impl Default for HashrateReward
impl Default for HashrateReward
Source§fn default() -> HashrateReward
fn default() -> HashrateReward
Returns the “default value” for a type. Read more
impl Eq for HashrateReward
Source§impl PartialEq for HashrateReward
impl PartialEq for HashrateReward
impl StructuralPartialEq for HashrateReward
Auto Trait Implementations§
impl Freeze for HashrateReward
impl RefUnwindSafe for HashrateReward
impl Send for HashrateReward
impl Sync for HashrateReward
impl Unpin for HashrateReward
impl UnsafeUnpin for HashrateReward
impl UnwindSafe for HashrateReward
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more