pub struct StoredOpStatus {
pub request_id: String,
pub status: String,
pub target_id: String,
pub target_type: String,
pub permission_set_arn: String,
pub principal_type: String,
pub principal_id: String,
pub created_date: i64,
}Expand description
Async status for account-assignment create/delete operations.
Fields§
§request_id: String§status: String§target_id: String§target_type: String§permission_set_arn: String§principal_type: String§principal_id: String§created_date: i64Trait Implementations§
Source§impl Clone for StoredOpStatus
impl Clone for StoredOpStatus
Source§fn clone(&self) -> StoredOpStatus
fn clone(&self) -> StoredOpStatus
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StoredOpStatus
impl Debug for StoredOpStatus
Source§impl<'de> Deserialize<'de> for StoredOpStatus
impl<'de> Deserialize<'de> for StoredOpStatus
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
Auto Trait Implementations§
impl Freeze for StoredOpStatus
impl RefUnwindSafe for StoredOpStatus
impl Send for StoredOpStatus
impl Sync for StoredOpStatus
impl Unpin for StoredOpStatus
impl UnsafeUnpin for StoredOpStatus
impl UnwindSafe for StoredOpStatus
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