pub struct ListDropdownsRequest<'a> {
pub next_token: Option<String>,
pub page_size: Option<i64>,
/* private fields */
}Expand description
Create this with the associated client method.
That method takes required values as arguments. Set optional values using builder methods on this struct.
Fields§
§next_token: Option<String>§page_size: Option<i64>Implementations§
Source§impl<'a> ListDropdownsRequest<'a>
impl<'a> ListDropdownsRequest<'a>
pub async fn send(self) -> Result<DropdownSummariesPaginatedList>
pub fn next_token(self, next_token: &str) -> Self
pub fn page_size(self, page_size: i64) -> Self
Auto Trait Implementations§
impl<'a> Freeze for ListDropdownsRequest<'a>
impl<'a> !RefUnwindSafe for ListDropdownsRequest<'a>
impl<'a> Send for ListDropdownsRequest<'a>
impl<'a> Sync for ListDropdownsRequest<'a>
impl<'a> Unpin for ListDropdownsRequest<'a>
impl<'a> !UnwindSafe for ListDropdownsRequest<'a>
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