pub struct DeletedRoleAssignmentResource {
pub object: String,
pub deleted: bool,
}Expand description
Confirmation payload returned after unassigning a role.
Fields§
§object: StringIdentifier for the deleted assignment, such as group.role.deleted or user.role.deleted.
deleted: boolWhether the assignment was removed.
Trait Implementations§
Source§impl Clone for DeletedRoleAssignmentResource
impl Clone for DeletedRoleAssignmentResource
Source§fn clone(&self) -> DeletedRoleAssignmentResource
fn clone(&self) -> DeletedRoleAssignmentResource
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<'de> Deserialize<'de> for DeletedRoleAssignmentResource
impl<'de> Deserialize<'de> for DeletedRoleAssignmentResource
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 DeletedRoleAssignmentResource
impl PartialEq for DeletedRoleAssignmentResource
Source§fn eq(&self, other: &DeletedRoleAssignmentResource) -> bool
fn eq(&self, other: &DeletedRoleAssignmentResource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeletedRoleAssignmentResource
Auto Trait Implementations§
impl Freeze for DeletedRoleAssignmentResource
impl RefUnwindSafe for DeletedRoleAssignmentResource
impl Send for DeletedRoleAssignmentResource
impl Sync for DeletedRoleAssignmentResource
impl Unpin for DeletedRoleAssignmentResource
impl UnwindSafe for DeletedRoleAssignmentResource
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