pub struct ProposalVotingSummary {Show 33 fields
pub proposal_type: ProposalType,
pub epoch_no: u64,
pub drep_yes_votes_cast: u64,
pub drep_active_yes_vote_power: u64,
pub drep_yes_vote_power: u64,
pub drep_yes_pct: f64,
pub drep_no_votes_cast: u64,
pub drep_active_no_vote_power: u64,
pub drep_no_vote_power: u64,
pub drep_no_pct: f64,
pub drep_abstain_votes_cast: u64,
pub drep_active_abstain_vote_power: u64,
pub drep_always_no_confidence_vote_power: u64,
pub drep_always_abstain_vote_power: u64,
pub pool_yes_votes_cast: u64,
pub pool_active_yes_vote_power: u64,
pub pool_yes_vote_power: u64,
pub pool_yes_pct: f64,
pub pool_no_votes_cast: u64,
pub pool_active_no_vote_power: u64,
pub pool_no_vote_power: u64,
pub pool_no_pct: f64,
pub pool_abstain_votes_cast: u64,
pub pool_active_abstain_vote_power: u64,
pub pool_passive_always_abstain_votes_assigned: u64,
pub pool_passive_always_abstain_vote_power: u64,
pub pool_passive_always_no_confidence_votes_assigned: u64,
pub pool_passive_always_no_confidence_vote_power: u64,
pub committee_yes_votes_cast: u64,
pub committee_yes_pct: f64,
pub committee_no_votes_cast: u64,
pub committee_no_pct: f64,
pub committee_abstain_votes_cast: u64,
}Fields§
§proposal_type: ProposalType§epoch_no: u64§drep_yes_votes_cast: u64§drep_active_yes_vote_power: u64§drep_yes_vote_power: u64§drep_yes_pct: f64§drep_no_votes_cast: u64§drep_active_no_vote_power: u64§drep_no_vote_power: u64§drep_no_pct: f64§drep_abstain_votes_cast: u64§drep_active_abstain_vote_power: u64§drep_always_no_confidence_vote_power: u64§drep_always_abstain_vote_power: u64§pool_yes_votes_cast: u64§pool_active_yes_vote_power: u64§pool_yes_vote_power: u64§pool_yes_pct: f64§pool_no_votes_cast: u64§pool_active_no_vote_power: u64§pool_no_vote_power: u64§pool_no_pct: f64§pool_abstain_votes_cast: u64§pool_active_abstain_vote_power: u64§pool_passive_always_abstain_votes_assigned: u64§pool_passive_always_abstain_vote_power: u64§pool_passive_always_no_confidence_votes_assigned: u64§pool_passive_always_no_confidence_vote_power: u64§committee_yes_votes_cast: u64§committee_yes_pct: f64§committee_no_votes_cast: u64§committee_no_pct: f64§committee_abstain_votes_cast: u64Trait Implementations§
Source§impl Clone for ProposalVotingSummary
impl Clone for ProposalVotingSummary
Source§fn clone(&self) -> ProposalVotingSummary
fn clone(&self) -> ProposalVotingSummary
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 ProposalVotingSummary
impl Debug for ProposalVotingSummary
Source§impl<'de> Deserialize<'de> for ProposalVotingSummary
impl<'de> Deserialize<'de> for ProposalVotingSummary
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 ProposalVotingSummary
impl RefUnwindSafe for ProposalVotingSummary
impl Send for ProposalVotingSummary
impl Sync for ProposalVotingSummary
impl Unpin for ProposalVotingSummary
impl UnwindSafe for ProposalVotingSummary
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