pub struct User {Show 14 fields
pub id: Uuid,
pub email: String,
pub password_hash: String,
pub first_name: String,
pub last_name: String,
pub role: UserRole,
pub organization_id: Option<Uuid>,
pub is_active: bool,
pub processing_restricted: bool,
pub processing_restricted_at: Option<DateTime<Utc>>,
pub marketing_opt_out: bool,
pub marketing_opt_out_at: Option<DateTime<Utc>>,
pub created_at: DateTime<Utc>,
pub updated_at: DateTime<Utc>,
}Fields§
§id: Uuid§email: String§password_hash: String§first_name: String§last_name: String§role: UserRole§organization_id: Option<Uuid>§is_active: bool§processing_restricted: bool§processing_restricted_at: Option<DateTime<Utc>>§marketing_opt_out: bool§marketing_opt_out_at: Option<DateTime<Utc>>§created_at: DateTime<Utc>§updated_at: DateTime<Utc>Implementations§
Source§impl User
impl User
pub fn new( email: String, password_hash: String, first_name: String, last_name: String, role: UserRole, organization_id: Option<Uuid>, ) -> Result<Self, String>
pub fn full_name(&self) -> String
pub fn update_profile( &mut self, first_name: String, last_name: String, ) -> Result<(), String>
pub fn deactivate(&mut self)
pub fn activate(&mut self)
pub fn can_access_building(&self, building_org_id: Option<Uuid>) -> bool
pub fn rectify_data( &mut self, email: Option<String>, first_name: Option<String>, last_name: Option<String>, ) -> Result<(), String>
pub fn restrict_processing(&mut self) -> Result<(), String>
pub fn unrestrict_processing(&mut self)
pub fn set_marketing_opt_out(&mut self, opt_out: bool)
pub fn can_process_data(&self) -> bool
pub fn can_send_marketing(&self) -> bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
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 User
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnwindSafe for User
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
§impl<T> Chain<T> for T
impl<T> Chain<T> for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Fake for T
impl<T> Fake for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.