pub struct AccountRecord {
pub row_id: i64,
pub created_at: UtcDateTime,
pub modified_at: UtcDateTime,
pub identity: PublicIdentity,
}Expand description
Account record from the database.
Fields§
§row_id: i64Row identifier.
created_at: UtcDateTimeCreated date and time.
modified_at: UtcDateTimeModified date and time.
identity: PublicIdentityAccount identity.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AccountRecord
impl RefUnwindSafe for AccountRecord
impl Send for AccountRecord
impl Sync for AccountRecord
impl Unpin for AccountRecord
impl UnwindSafe for AccountRecord
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