pub struct ServerApplicationUserProjection {Show 13 fields
pub project_id: String,
pub application_id: String,
pub user_id: String,
pub projection_schema: String,
pub user_revision: i64,
pub projection_revision: i64,
pub display_name: Option<String>,
pub picture_url: Option<String>,
pub locale: Option<String>,
pub verified_email: Option<String>,
pub status: String,
pub created_at: String,
pub updated_at: String,
}Expand description
Existing materialized Application projection; Server never performs an ad hoc reprojection.
Fields§
§project_id: String§application_id: String§user_id: String§projection_schema: String§user_revision: i64§projection_revision: i64§display_name: Option<String>§picture_url: Option<String>§locale: Option<String>§verified_email: Option<String>§status: String§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for ServerApplicationUserProjection
impl Clone for ServerApplicationUserProjection
Source§fn clone(&self) -> ServerApplicationUserProjection
fn clone(&self) -> ServerApplicationUserProjection
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 ServerApplicationUserProjection
impl ComposeSchema for ServerApplicationUserProjection
Source§impl<'de> Deserialize<'de> for ServerApplicationUserProjection
impl<'de> Deserialize<'de> for ServerApplicationUserProjection
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 StructuralPartialEq for ServerApplicationUserProjection
Auto Trait Implementations§
impl Freeze for ServerApplicationUserProjection
impl RefUnwindSafe for ServerApplicationUserProjection
impl Send for ServerApplicationUserProjection
impl Sync for ServerApplicationUserProjection
impl Unpin for ServerApplicationUserProjection
impl UnsafeUnpin for ServerApplicationUserProjection
impl UnwindSafe for ServerApplicationUserProjection
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