pub struct CurrentUserResponse {
pub project_id: String,
pub application_id: String,
pub user_id: String,
pub projection: UserProjection,
pub projection_revision: i64,
pub authenticated_at: String,
pub session_expires_at: String,
}Fields§
§project_id: String§application_id: String§user_id: String§projection: UserProjection§projection_revision: i64§authenticated_at: String§session_expires_at: StringTrait Implementations§
Source§impl Clone for CurrentUserResponse
impl Clone for CurrentUserResponse
Source§fn clone(&self) -> CurrentUserResponse
fn clone(&self) -> CurrentUserResponse
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 CurrentUserResponse
impl ComposeSchema for CurrentUserResponse
Source§impl Debug for CurrentUserResponse
impl Debug for CurrentUserResponse
Source§impl<'de> Deserialize<'de> for CurrentUserResponse
impl<'de> Deserialize<'de> for CurrentUserResponse
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
Source§impl PartialEq for CurrentUserResponse
impl PartialEq for CurrentUserResponse
Source§impl Serialize for CurrentUserResponse
impl Serialize for CurrentUserResponse
impl StructuralPartialEq for CurrentUserResponse
Auto Trait Implementations§
impl Freeze for CurrentUserResponse
impl RefUnwindSafe for CurrentUserResponse
impl Send for CurrentUserResponse
impl Sync for CurrentUserResponse
impl Unpin for CurrentUserResponse
impl UnsafeUnpin for CurrentUserResponse
impl UnwindSafe for CurrentUserResponse
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