struct SelectionStats {
bottom_safe_offline_stake: u128,
top_safe_offline_stake: u128,
distinct_members: usize,
max_single_member_seats: u16,
safe_offline_members: usize,
total_committee_stake: u128,
total_registered_stake: u128,
}
Fields§
§bottom_safe_offline_stake: u128
§top_safe_offline_stake: u128
§distinct_members: usize
§max_single_member_seats: u16
§safe_offline_members: usize
§total_committee_stake: u128
§total_registered_stake: u128
Auto Trait Implementations§
impl Freeze for SelectionStats
impl RefUnwindSafe for SelectionStats
impl Send for SelectionStats
impl Sync for SelectionStats
impl Unpin for SelectionStats
impl UnwindSafe for SelectionStats
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> 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