pub struct ListTypesRequest {
pub api_id: String,
pub format: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§api_id: String
The API ID.
format: String
The type format: SDL or JSON.
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 ListTypesRequest
impl Clone for ListTypesRequest
Source§fn clone(&self) -> ListTypesRequest
fn clone(&self) -> ListTypesRequest
Returns a copy 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 ListTypesRequest
impl Debug for ListTypesRequest
Source§impl Default for ListTypesRequest
impl Default for ListTypesRequest
Source§fn default() -> ListTypesRequest
fn default() -> ListTypesRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListTypesRequest
impl PartialEq for ListTypesRequest
Source§impl Serialize for ListTypesRequest
impl Serialize for ListTypesRequest
impl StructuralPartialEq for ListTypesRequest
Auto Trait Implementations§
impl Freeze for ListTypesRequest
impl RefUnwindSafe for ListTypesRequest
impl Send for ListTypesRequest
impl Sync for ListTypesRequest
impl Unpin for ListTypesRequest
impl UnwindSafe for ListTypesRequest
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