pub struct Profile {
pub application_container: Option<AttributesContainer>,
pub core_attributes: Option<Value>,
pub core_revision: Option<i32>,
pub id: Option<String>,
pub profile_state: Option<ProfileState>,
pub revision: Option<i32>,
pub time_stamp: Option<OffsetDateTime>,
}Expand description
A user profile.
Fields§
§application_container: Option<AttributesContainer>Stores a set of named profile attributes.
core_attributes: Option<Value>The core attributes of this profile.
core_revision: Option<i32>The maximum revision number of any attribute.
id: Option<String>The unique identifier of the profile.
profile_state: Option<ProfileState>The current state of the profile.
revision: Option<i32>The maximum revision number of any attribute.
time_stamp: Option<OffsetDateTime>The time at which this profile was last changed.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Profile
impl<'de> Deserialize<'de> for Profile
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 Profile
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnwindSafe for Profile
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