pub struct ListProposalVotesOutput {
pub next_token: Option<String>,
pub proposal_votes: Option<Vec<VoteSummary>>,
}Fields§
§next_token: Option<String>The pagination token that indicates the next set of results to retrieve.
proposal_votes: Option<Vec<VoteSummary>>The listing of votes.
Trait Implementations§
Source§impl Clone for ListProposalVotesOutput
impl Clone for ListProposalVotesOutput
Source§fn clone(&self) -> ListProposalVotesOutput
fn clone(&self) -> ListProposalVotesOutput
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 ListProposalVotesOutput
impl Debug for ListProposalVotesOutput
Source§impl Default for ListProposalVotesOutput
impl Default for ListProposalVotesOutput
Source§fn default() -> ListProposalVotesOutput
fn default() -> ListProposalVotesOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListProposalVotesOutput
impl<'de> Deserialize<'de> for ListProposalVotesOutput
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
Source§impl PartialEq for ListProposalVotesOutput
impl PartialEq for ListProposalVotesOutput
impl StructuralPartialEq for ListProposalVotesOutput
Auto Trait Implementations§
impl Freeze for ListProposalVotesOutput
impl RefUnwindSafe for ListProposalVotesOutput
impl Send for ListProposalVotesOutput
impl Sync for ListProposalVotesOutput
impl Unpin for ListProposalVotesOutput
impl UnwindSafe for ListProposalVotesOutput
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