pub struct ListPrincipalThingsResponse {
pub next_token: Option<String>,
pub things: Option<Vec<String>>,
}Expand description
The output from the ListPrincipalThings operation.
Fields§
§next_token: Option<String>The token used to get the next set of results, or null if there are no additional results.
things: Option<Vec<String>>The things.
Trait Implementations§
Source§impl Clone for ListPrincipalThingsResponse
impl Clone for ListPrincipalThingsResponse
Source§fn clone(&self) -> ListPrincipalThingsResponse
fn clone(&self) -> ListPrincipalThingsResponse
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 ListPrincipalThingsResponse
impl Debug for ListPrincipalThingsResponse
Source§impl Default for ListPrincipalThingsResponse
impl Default for ListPrincipalThingsResponse
Source§fn default() -> ListPrincipalThingsResponse
fn default() -> ListPrincipalThingsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListPrincipalThingsResponse
impl<'de> Deserialize<'de> for ListPrincipalThingsResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ListPrincipalThingsResponse
Auto Trait Implementations§
impl Freeze for ListPrincipalThingsResponse
impl RefUnwindSafe for ListPrincipalThingsResponse
impl Send for ListPrincipalThingsResponse
impl Sync for ListPrincipalThingsResponse
impl Unpin for ListPrincipalThingsResponse
impl UnwindSafe for ListPrincipalThingsResponse
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