pub struct AccountBody {
pub profile: Option<UserProfile>,
}Expand description
The payload returned for the authenticated account.
Fields§
§profile: Option<UserProfile>Trait Implementations§
Source§impl Clone for AccountBody
impl Clone for AccountBody
Source§fn clone(&self) -> AccountBody
fn clone(&self) -> AccountBody
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AccountBody
impl Debug for AccountBody
Source§impl Default for AccountBody
impl Default for AccountBody
Source§fn default() -> AccountBody
fn default() -> AccountBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountBody
impl<'de> Deserialize<'de> for AccountBody
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 Eq for AccountBody
Source§impl PartialEq for AccountBody
impl PartialEq for AccountBody
impl StructuralPartialEq for AccountBody
Auto Trait Implementations§
impl Freeze for AccountBody
impl RefUnwindSafe for AccountBody
impl Send for AccountBody
impl Sync for AccountBody
impl Unpin for AccountBody
impl UnsafeUnpin for AccountBody
impl UnwindSafe for AccountBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.