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