pub struct ProjectUser {
pub id: String,
pub project_id: String,
pub public_id: String,
pub status: ProjectUserStatus,
pub user_revision: i64,
pub security_revision: i64,
pub display_name: Option<String>,
pub picture_url: Option<String>,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§project_id: String§public_id: String§status: ProjectUserStatus§user_revision: i64§security_revision: i64§display_name: Option<String>§picture_url: Option<String>§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for ProjectUser
impl Clone for ProjectUser
Source§fn clone(&self) -> ProjectUser
fn clone(&self) -> ProjectUser
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 ProjectUser
impl ComposeSchema for ProjectUser
Source§impl Debug for ProjectUser
impl Debug for ProjectUser
Source§impl<'de> Deserialize<'de> for ProjectUser
impl<'de> Deserialize<'de> for ProjectUser
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 ProjectUser
Source§impl PartialEq for ProjectUser
impl PartialEq for ProjectUser
Source§impl Serialize for ProjectUser
impl Serialize for ProjectUser
impl StructuralPartialEq for ProjectUser
Auto Trait Implementations§
impl Freeze for ProjectUser
impl RefUnwindSafe for ProjectUser
impl Send for ProjectUser
impl Sync for ProjectUser
impl Unpin for ProjectUser
impl UnsafeUnpin for ProjectUser
impl UnwindSafe for ProjectUser
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.