pub struct ProjectUserIdentity {
pub id: String,
pub project_id: String,
pub user_id: String,
pub status: ProjectUserIdentityStatus,
pub identity_revision: i64,
pub is_primary_source: bool,
pub presentation: ProjectUserIdentityPresentation,
pub verified_or_observed_at: String,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§project_id: String§user_id: String§status: ProjectUserIdentityStatus§identity_revision: i64§is_primary_source: bool§presentation: ProjectUserIdentityPresentation§verified_or_observed_at: String§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for ProjectUserIdentity
impl Clone for ProjectUserIdentity
Source§fn clone(&self) -> ProjectUserIdentity
fn clone(&self) -> ProjectUserIdentity
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 ComposeSchema for ProjectUserIdentity
impl ComposeSchema for ProjectUserIdentity
Source§impl Debug for ProjectUserIdentity
impl Debug for ProjectUserIdentity
Source§impl<'de> Deserialize<'de> for ProjectUserIdentity
impl<'de> Deserialize<'de> for ProjectUserIdentity
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
impl Eq for ProjectUserIdentity
Source§impl PartialEq for ProjectUserIdentity
impl PartialEq for ProjectUserIdentity
Source§impl Serialize for ProjectUserIdentity
impl Serialize for ProjectUserIdentity
impl StructuralPartialEq for ProjectUserIdentity
Auto Trait Implementations§
impl Freeze for ProjectUserIdentity
impl RefUnwindSafe for ProjectUserIdentity
impl Send for ProjectUserIdentity
impl Sync for ProjectUserIdentity
impl Unpin for ProjectUserIdentity
impl UnsafeUnpin for ProjectUserIdentity
impl UnwindSafe for ProjectUserIdentity
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.