pub struct ScimOrganizationMember {
pub organization_id: String,
pub user_id: String,
pub role: String,
}Expand description
Organization member details passed to SCIM hooks.
Fields§
§organization_id: StringOrganization identifier.
user_id: StringUser identifier.
role: StringPersisted organization role string.
Trait Implementations§
Source§impl Clone for ScimOrganizationMember
impl Clone for ScimOrganizationMember
Source§fn clone(&self) -> ScimOrganizationMember
fn clone(&self) -> ScimOrganizationMember
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 ScimOrganizationMember
impl Debug for ScimOrganizationMember
impl Eq for ScimOrganizationMember
Source§impl PartialEq for ScimOrganizationMember
impl PartialEq for ScimOrganizationMember
Source§fn eq(&self, other: &ScimOrganizationMember) -> bool
fn eq(&self, other: &ScimOrganizationMember) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScimOrganizationMember
Auto Trait Implementations§
impl Freeze for ScimOrganizationMember
impl RefUnwindSafe for ScimOrganizationMember
impl Send for ScimOrganizationMember
impl Sync for ScimOrganizationMember
impl Unpin for ScimOrganizationMember
impl UnsafeUnpin for ScimOrganizationMember
impl UnwindSafe for ScimOrganizationMember
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.