pub struct Profile {Show 13 fields
pub id: String,
pub profile_url: String,
pub public: bool,
pub guid: String,
pub first_name: String,
pub middle_name: String,
pub last_name: String,
pub display_name: String,
pub name: String,
pub account_type: String,
pub deleted: bool,
pub is_curator: bool,
pub names: HashMap<String, Name>,
}
Fields§
§id: String
§profile_url: String
§public: bool
§guid: String
§first_name: String
§middle_name: String
§last_name: String
§display_name: String
§name: String
§account_type: String
§deleted: bool
§is_curator: bool
§names: HashMap<String, Name>
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