pub struct BeaconRound {
pub round: u64,
pub randomness: String,
pub participants: Vec<String>,
pub vrf_proofs: Vec<VrfProof>,
pub threshold_signature: String,
pub finalized_at: DateTime<Utc>,
pub bias_challenges: Vec<String>,
}
Expand description
Finalized beacon round
Fields§
§round: u64
§randomness: String
§participants: Vec<String>
§vrf_proofs: Vec<VrfProof>
§threshold_signature: String
§finalized_at: DateTime<Utc>
§bias_challenges: Vec<String>
Trait Implementations§
Source§impl Clone for BeaconRound
impl Clone for BeaconRound
Source§fn clone(&self) -> BeaconRound
fn clone(&self) -> BeaconRound
Returns a duplicate 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 Debug for BeaconRound
impl Debug for BeaconRound
Source§impl<'de> Deserialize<'de> for BeaconRound
impl<'de> Deserialize<'de> for BeaconRound
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
Auto Trait Implementations§
impl Freeze for BeaconRound
impl RefUnwindSafe for BeaconRound
impl Send for BeaconRound
impl Sync for BeaconRound
impl Unpin for BeaconRound
impl UnwindSafe for BeaconRound
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