pub struct ListPrincipalThingsRequest {
pub max_results: Option<i64>,
pub next_token: Option<String>,
pub principal: String,
}Expand description
The input for the ListPrincipalThings operation.
Fields§
§max_results: Option<i64>The maximum number of results to return in this operation.
next_token: Option<String>The token to retrieve the next set of results.
principal: StringThe principal.
Trait Implementations§
Source§impl Clone for ListPrincipalThingsRequest
impl Clone for ListPrincipalThingsRequest
Source§fn clone(&self) -> ListPrincipalThingsRequest
fn clone(&self) -> ListPrincipalThingsRequest
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 ListPrincipalThingsRequest
impl Debug for ListPrincipalThingsRequest
Source§impl Default for ListPrincipalThingsRequest
impl Default for ListPrincipalThingsRequest
Source§fn default() -> ListPrincipalThingsRequest
fn default() -> ListPrincipalThingsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListPrincipalThingsRequest
Auto Trait Implementations§
impl Freeze for ListPrincipalThingsRequest
impl RefUnwindSafe for ListPrincipalThingsRequest
impl Send for ListPrincipalThingsRequest
impl Sync for ListPrincipalThingsRequest
impl Unpin for ListPrincipalThingsRequest
impl UnwindSafe for ListPrincipalThingsRequest
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