pub struct ListProposalsInput {
pub max_results: Option<i64>,
pub network_id: String,
pub next_token: Option<String>,
}Fields§
§max_results: Option<i64>The maximum number of proposals 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.
Trait Implementations§
Source§impl Clone for ListProposalsInput
impl Clone for ListProposalsInput
Source§fn clone(&self) -> ListProposalsInput
fn clone(&self) -> ListProposalsInput
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 ListProposalsInput
impl Debug for ListProposalsInput
Source§impl Default for ListProposalsInput
impl Default for ListProposalsInput
Source§fn default() -> ListProposalsInput
fn default() -> ListProposalsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListProposalsInput
impl PartialEq for ListProposalsInput
Source§impl Serialize for ListProposalsInput
impl Serialize for ListProposalsInput
impl StructuralPartialEq for ListProposalsInput
Auto Trait Implementations§
impl Freeze for ListProposalsInput
impl RefUnwindSafe for ListProposalsInput
impl Send for ListProposalsInput
impl Sync for ListProposalsInput
impl Unpin for ListProposalsInput
impl UnwindSafe for ListProposalsInput
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