pub struct ProfileAttributes {
pub name: String,
pub platform: String,
pub profile_content: String,
pub uuid: String,
pub created_date: Option<String>,
pub profile_state: String,
pub profile_type: String,
pub expiration_date: String,
}
Fields§
§name: String
§platform: String
§profile_content: String
§uuid: String
§created_date: Option<String>
§profile_state: String
§profile_type: String
§expiration_date: String
Trait Implementations§
Source§impl Debug for ProfileAttributes
impl Debug for ProfileAttributes
Source§impl<'de> Deserialize<'de> for ProfileAttributes
impl<'de> Deserialize<'de> for ProfileAttributes
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 ProfileAttributes
impl RefUnwindSafe for ProfileAttributes
impl Send for ProfileAttributes
impl Sync for ProfileAttributes
impl Unpin for ProfileAttributes
impl UnwindSafe for ProfileAttributes
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