pub struct AuthStoreRecord {
pub id: String,
pub collection_id: String,
pub collection_name: String,
pub created: String,
pub updated: String,
pub email: String,
pub email_visibility: bool,
pub verified: bool,
}Expand description
Represents the details of an authenticated user’s record.
The AuthStoreRecord struct contains information about the user,
such as their ID, email, etc. and other metadata related to the
collection they belong to.
Fields§
§id: StringThe user’s unique ID.
collection_id: StringThe ID of the collection the user belongs to.
collection_name: StringThe name of the collection the user belongs to.
created: StringThe timestamp when the record was created.
updated: StringThe timestamp when the record was last updated.
email: StringThe user’s email address.
email_visibility: boolIndicates whether the user’s email is publicly visible.
verified: boolIndicates whether the user’s email has been verified.
Trait Implementations§
Source§impl Clone for AuthStoreRecord
impl Clone for AuthStoreRecord
Source§fn clone(&self) -> AuthStoreRecord
fn clone(&self) -> AuthStoreRecord
Returns a duplicate of the value. Read more
1.0.0 · 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 AuthStoreRecord
impl Debug for AuthStoreRecord
Source§impl<'de> Deserialize<'de> for AuthStoreRecord
impl<'de> Deserialize<'de> for AuthStoreRecord
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
Auto Trait Implementations§
impl Freeze for AuthStoreRecord
impl RefUnwindSafe for AuthStoreRecord
impl Send for AuthStoreRecord
impl Sync for AuthStoreRecord
impl Unpin for AuthStoreRecord
impl UnwindSafe for AuthStoreRecord
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