pub struct ListIAMPolicyAssignmentsForUserResponse {
pub active_assignments: Option<Vec<ActiveIAMPolicyAssignment>>,
pub next_token: Option<String>,
pub request_id: Option<String>,
pub status: Option<i64>,
}
Fields§
§active_assignments: Option<Vec<ActiveIAMPolicyAssignment>>
The active assignments for this user.
next_token: Option<String>
The token for the next set of results, or null if there are no more results.
request_id: Option<String>
The AWS request ID for this operation.
status: Option<i64>
The HTTP status of the request.
Trait Implementations§
Source§impl Clone for ListIAMPolicyAssignmentsForUserResponse
impl Clone for ListIAMPolicyAssignmentsForUserResponse
Source§fn clone(&self) -> ListIAMPolicyAssignmentsForUserResponse
fn clone(&self) -> ListIAMPolicyAssignmentsForUserResponse
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 Default for ListIAMPolicyAssignmentsForUserResponse
impl Default for ListIAMPolicyAssignmentsForUserResponse
Source§fn default() -> ListIAMPolicyAssignmentsForUserResponse
fn default() -> ListIAMPolicyAssignmentsForUserResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListIAMPolicyAssignmentsForUserResponse
impl<'de> Deserialize<'de> for ListIAMPolicyAssignmentsForUserResponse
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
Source§impl PartialEq for ListIAMPolicyAssignmentsForUserResponse
impl PartialEq for ListIAMPolicyAssignmentsForUserResponse
Source§fn eq(&self, other: &ListIAMPolicyAssignmentsForUserResponse) -> bool
fn eq(&self, other: &ListIAMPolicyAssignmentsForUserResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListIAMPolicyAssignmentsForUserResponse
Auto Trait Implementations§
impl Freeze for ListIAMPolicyAssignmentsForUserResponse
impl RefUnwindSafe for ListIAMPolicyAssignmentsForUserResponse
impl Send for ListIAMPolicyAssignmentsForUserResponse
impl Sync for ListIAMPolicyAssignmentsForUserResponse
impl Unpin for ListIAMPolicyAssignmentsForUserResponse
impl UnwindSafe for ListIAMPolicyAssignmentsForUserResponse
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