pub enum GetProfileResponse {
ApiError(Box<ApiError>),
Profile(Box<Profile>),
}Variants§
Trait Implementations§
Source§impl Clone for GetProfileResponse
impl Clone for GetProfileResponse
Source§fn clone(&self) -> GetProfileResponse
fn clone(&self) -> GetProfileResponse
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 GetProfileResponse
impl Debug for GetProfileResponse
Source§impl Default for GetProfileResponse
impl Default for GetProfileResponse
Source§impl<'de> Deserialize<'de> for GetProfileResponse
impl<'de> Deserialize<'de> for GetProfileResponse
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 GetProfileResponse
impl PartialEq for GetProfileResponse
Source§impl Serialize for GetProfileResponse
impl Serialize for GetProfileResponse
impl StructuralPartialEq for GetProfileResponse
Auto Trait Implementations§
impl Freeze for GetProfileResponse
impl RefUnwindSafe for GetProfileResponse
impl Send for GetProfileResponse
impl Sync for GetProfileResponse
impl Unpin for GetProfileResponse
impl UnwindSafe for GetProfileResponse
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