pub struct GetMeResponse {
pub operations: Option<Vec<GetMeResponseOperationsItem>>,
pub user: Option<GetMeResponseUser>,
}
Fields§
§operations: Option<Vec<GetMeResponseOperationsItem>>
Information about operations and their usage limits. The API does not return this object for users with the Guest role.
user: Option<GetMeResponseUser>
Information about the authenticated user.
Trait Implementations§
Source§impl Clone for GetMeResponse
impl Clone for GetMeResponse
Source§fn clone(&self) -> GetMeResponse
fn clone(&self) -> GetMeResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 GetMeResponse
impl Debug for GetMeResponse
Source§impl<'de> Deserialize<'de> for GetMeResponse
impl<'de> Deserialize<'de> for GetMeResponse
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
Source§impl PartialEq for GetMeResponse
impl PartialEq for GetMeResponse
Source§impl Serialize for GetMeResponse
impl Serialize for GetMeResponse
impl StructuralPartialEq for GetMeResponse
Auto Trait Implementations§
impl Freeze for GetMeResponse
impl RefUnwindSafe for GetMeResponse
impl Send for GetMeResponse
impl Sync for GetMeResponse
impl Unpin for GetMeResponse
impl UnwindSafe for GetMeResponse
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