pub struct ListGraphqlApisRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§max_results: Option<i64>
The maximum number of results you want the request to return.
next_token: Option<String>
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
Trait Implementations§
Source§impl Clone for ListGraphqlApisRequest
impl Clone for ListGraphqlApisRequest
Source§fn clone(&self) -> ListGraphqlApisRequest
fn clone(&self) -> ListGraphqlApisRequest
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 ListGraphqlApisRequest
impl Debug for ListGraphqlApisRequest
Source§impl Default for ListGraphqlApisRequest
impl Default for ListGraphqlApisRequest
Source§fn default() -> ListGraphqlApisRequest
fn default() -> ListGraphqlApisRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListGraphqlApisRequest
impl PartialEq for ListGraphqlApisRequest
Source§impl Serialize for ListGraphqlApisRequest
impl Serialize for ListGraphqlApisRequest
impl StructuralPartialEq for ListGraphqlApisRequest
Auto Trait Implementations§
impl Freeze for ListGraphqlApisRequest
impl RefUnwindSafe for ListGraphqlApisRequest
impl Send for ListGraphqlApisRequest
impl Sync for ListGraphqlApisRequest
impl Unpin for ListGraphqlApisRequest
impl UnwindSafe for ListGraphqlApisRequest
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