pub struct ListDataSetsRequest {
pub aws_account_id: String,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§aws_account_id: String
The AWS account ID.
max_results: Option<i64>
The maximum number of results to be returned per request.
next_token: Option<String>
The token for the next set of results, or null if there are no more results.
Trait Implementations§
Source§impl Clone for ListDataSetsRequest
impl Clone for ListDataSetsRequest
Source§fn clone(&self) -> ListDataSetsRequest
fn clone(&self) -> ListDataSetsRequest
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 ListDataSetsRequest
impl Debug for ListDataSetsRequest
Source§impl Default for ListDataSetsRequest
impl Default for ListDataSetsRequest
Source§fn default() -> ListDataSetsRequest
fn default() -> ListDataSetsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListDataSetsRequest
impl PartialEq for ListDataSetsRequest
Source§impl Serialize for ListDataSetsRequest
impl Serialize for ListDataSetsRequest
impl StructuralPartialEq for ListDataSetsRequest
Auto Trait Implementations§
impl Freeze for ListDataSetsRequest
impl RefUnwindSafe for ListDataSetsRequest
impl Send for ListDataSetsRequest
impl Sync for ListDataSetsRequest
impl Unpin for ListDataSetsRequest
impl UnwindSafe for ListDataSetsRequest
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