pub struct VotingProcedure {
pub proposal_tx_hash: String,
pub proposal_index: u64,
pub voter_role: VoterRole,
pub voter: String,
pub voter_hex: String,
pub vote: Vote,
pub meta_url: Option<String>,
pub meta_hash: Option<String>,
}Fields§
§proposal_tx_hash: String§proposal_index: u64§voter_role: VoterRole§voter: String§voter_hex: String§vote: Vote§meta_url: Option<String>§meta_hash: Option<String>Trait Implementations§
Source§impl Clone for VotingProcedure
impl Clone for VotingProcedure
Source§fn clone(&self) -> VotingProcedure
fn clone(&self) -> VotingProcedure
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 VotingProcedure
impl Debug for VotingProcedure
Source§impl<'de> Deserialize<'de> for VotingProcedure
impl<'de> Deserialize<'de> for VotingProcedure
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 VotingProcedure
impl RefUnwindSafe for VotingProcedure
impl Send for VotingProcedure
impl Sync for VotingProcedure
impl Unpin for VotingProcedure
impl UnwindSafe for VotingProcedure
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