pub struct RoleAssignmentRecord {
pub actor_id: ActorId,
pub role: Role,
pub tenant_id: TenantId,
pub assigned_at: u64,
}Expand description
Role assignment record.
Fields§
§actor_id: ActorId§role: Role§tenant_id: TenantId§assigned_at: u64Trait Implementations§
Source§impl Clone for RoleAssignmentRecord
impl Clone for RoleAssignmentRecord
Source§fn clone(&self) -> RoleAssignmentRecord
fn clone(&self) -> RoleAssignmentRecord
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 moreAuto Trait Implementations§
impl Freeze for RoleAssignmentRecord
impl RefUnwindSafe for RoleAssignmentRecord
impl Send for RoleAssignmentRecord
impl Sync for RoleAssignmentRecord
impl Unpin for RoleAssignmentRecord
impl UnsafeUnpin for RoleAssignmentRecord
impl UnwindSafe for RoleAssignmentRecord
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