pub struct UnresponsivenessOffence<Offender> {
pub session_index: SessionIndex,
pub validator_set_count: u32,
pub offenders: Vec<Offender>,
}
Expand description
An offence that is filed if a validator didn’t send a heartbeat message.
Fields§
§session_index: SessionIndex
The current session index in which we report the unresponsive validators.
It acts as a time measure for unresponsiveness reports and effectively will always point at the end of the session.
validator_set_count: u32
The size of the validator set in current session/era.
offenders: Vec<Offender>
Authorities that were unresponsive during the current era.
Trait Implementations§
source§impl<Offender: Clone> Clone for UnresponsivenessOffence<Offender>
impl<Offender: Clone> Clone for UnresponsivenessOffence<Offender>
source§fn clone(&self) -> UnresponsivenessOffence<Offender>
fn clone(&self) -> UnresponsivenessOffence<Offender>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<Offender> Debug for UnresponsivenessOffence<Offender>where
Offender: Debug,
impl<Offender> Debug for UnresponsivenessOffence<Offender>where
Offender: Debug,
source§impl<Offender: Clone> Offence<Offender> for UnresponsivenessOffence<Offender>
impl<Offender: Clone> Offence<Offender> for UnresponsivenessOffence<Offender>
source§fn offenders(&self) -> Vec<Offender>
fn offenders(&self) -> Vec<Offender>
The list of all offenders involved in this incident. Read more
source§fn session_index(&self) -> SessionIndex
fn session_index(&self) -> SessionIndex
The session index that is used for querying the validator set for the
slash_fraction
function. Read moresource§fn validator_set_count(&self) -> u32
fn validator_set_count(&self) -> u32
Return a validator set count at the time when the offence took place.
source§fn disable_strategy(&self) -> DisableStrategy
fn disable_strategy(&self) -> DisableStrategy
In which cases this offence needs to disable offenders until the next era starts.
source§fn slash_fraction(&self, offenders: u32) -> Perbill
fn slash_fraction(&self, offenders: u32) -> Perbill
A slash fraction of the total exposure that should be slashed for this
particular offence for the
offenders_count
that happened at a singular TimeSlot
. Read moresource§impl<Offender: PartialEq> PartialEq for UnresponsivenessOffence<Offender>
impl<Offender: PartialEq> PartialEq for UnresponsivenessOffence<Offender>
source§fn eq(&self, other: &UnresponsivenessOffence<Offender>) -> bool
fn eq(&self, other: &UnresponsivenessOffence<Offender>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<Offender> TypeInfo for UnresponsivenessOffence<Offender>where
Vec<Offender>: TypeInfo + 'static,
Offender: TypeInfo + 'static,
impl<Offender> TypeInfo for UnresponsivenessOffence<Offender>where
Vec<Offender>: TypeInfo + 'static,
Offender: TypeInfo + 'static,
impl<Offender: Eq> Eq for UnresponsivenessOffence<Offender>
impl<Offender> StructuralPartialEq for UnresponsivenessOffence<Offender>
Auto Trait Implementations§
impl<Offender> Freeze for UnresponsivenessOffence<Offender>
impl<Offender> RefUnwindSafe for UnresponsivenessOffence<Offender>where
Offender: RefUnwindSafe,
impl<Offender> Send for UnresponsivenessOffence<Offender>where
Offender: Send,
impl<Offender> Sync for UnresponsivenessOffence<Offender>where
Offender: Sync,
impl<Offender> Unpin for UnresponsivenessOffence<Offender>where
Offender: Unpin,
impl<Offender> UnwindSafe for UnresponsivenessOffence<Offender>where
Offender: UnwindSafe,
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<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
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.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
Consume self to return an equivalent value of
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.§impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
type Error = <U as TryFromKey<T>>::Error
fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>
§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
Consume self to return an equivalent value of
T
.