pub struct VoteOnProposalInput {
pub network_id: String,
pub proposal_id: String,
pub vote: String,
pub voter_member_id: String,
}
Fields§
§network_id: String
The unique identifier of the network.
proposal_id: String
The unique identifier of the proposal.
vote: String
The value of the vote.
voter_member_id: String
The unique identifier of the member casting the vote.
Trait Implementations§
Source§impl Clone for VoteOnProposalInput
impl Clone for VoteOnProposalInput
Source§fn clone(&self) -> VoteOnProposalInput
fn clone(&self) -> VoteOnProposalInput
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 Debug for VoteOnProposalInput
impl Debug for VoteOnProposalInput
Source§impl Default for VoteOnProposalInput
impl Default for VoteOnProposalInput
Source§fn default() -> VoteOnProposalInput
fn default() -> VoteOnProposalInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for VoteOnProposalInput
impl PartialEq for VoteOnProposalInput
Source§impl Serialize for VoteOnProposalInput
impl Serialize for VoteOnProposalInput
impl StructuralPartialEq for VoteOnProposalInput
Auto Trait Implementations§
impl Freeze for VoteOnProposalInput
impl RefUnwindSafe for VoteOnProposalInput
impl Send for VoteOnProposalInput
impl Sync for VoteOnProposalInput
impl Unpin for VoteOnProposalInput
impl UnwindSafe for VoteOnProposalInput
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