pub struct ListProposalVotesInput {
pub max_results: Option<i64>,
pub network_id: String,
pub next_token: Option<String>,
pub proposal_id: String,
}Fields§
§max_results: Option<i64>The maximum number of votes to return.
network_id: StringThe unique identifier of the network.
next_token: Option<String>The pagination token that indicates the next set of results to retrieve.
proposal_id: StringThe unique identifier of the proposal.
Trait Implementations§
Source§impl Clone for ListProposalVotesInput
impl Clone for ListProposalVotesInput
Source§fn clone(&self) -> ListProposalVotesInput
fn clone(&self) -> ListProposalVotesInput
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 ListProposalVotesInput
impl Debug for ListProposalVotesInput
Source§impl Default for ListProposalVotesInput
impl Default for ListProposalVotesInput
Source§fn default() -> ListProposalVotesInput
fn default() -> ListProposalVotesInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProposalVotesInput
impl PartialEq for ListProposalVotesInput
Source§impl Serialize for ListProposalVotesInput
impl Serialize for ListProposalVotesInput
impl StructuralPartialEq for ListProposalVotesInput
Auto Trait Implementations§
impl Freeze for ListProposalVotesInput
impl RefUnwindSafe for ListProposalVotesInput
impl Send for ListProposalVotesInput
impl Sync for ListProposalVotesInput
impl Unpin for ListProposalVotesInput
impl UnwindSafe for ListProposalVotesInput
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