pub struct ListResolversByFunctionRequest {
pub api_id: String,
pub function_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§api_id: String
The API ID.
function_id: String
The Function 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 you can use to return the next set of items in the list.
Trait Implementations§
Source§impl Clone for ListResolversByFunctionRequest
impl Clone for ListResolversByFunctionRequest
Source§fn clone(&self) -> ListResolversByFunctionRequest
fn clone(&self) -> ListResolversByFunctionRequest
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 Default for ListResolversByFunctionRequest
impl Default for ListResolversByFunctionRequest
Source§fn default() -> ListResolversByFunctionRequest
fn default() -> ListResolversByFunctionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListResolversByFunctionRequest
impl PartialEq for ListResolversByFunctionRequest
Source§fn eq(&self, other: &ListResolversByFunctionRequest) -> bool
fn eq(&self, other: &ListResolversByFunctionRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListResolversByFunctionRequest
Auto Trait Implementations§
impl Freeze for ListResolversByFunctionRequest
impl RefUnwindSafe for ListResolversByFunctionRequest
impl Send for ListResolversByFunctionRequest
impl Sync for ListResolversByFunctionRequest
impl Unpin for ListResolversByFunctionRequest
impl UnwindSafe for ListResolversByFunctionRequest
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