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