pub struct ProfileCreateResponse {
pub message: Option<String>,
pub profile: Option<Box<Profile>>,
}Fields§
§message: Option<String>§profile: Option<Box<Profile>>Implementations§
Source§impl ProfileCreateResponse
impl ProfileCreateResponse
pub fn new() -> ProfileCreateResponse
Trait Implementations§
Source§impl Clone for ProfileCreateResponse
impl Clone for ProfileCreateResponse
Source§fn clone(&self) -> ProfileCreateResponse
fn clone(&self) -> ProfileCreateResponse
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 ProfileCreateResponse
impl Debug for ProfileCreateResponse
Source§impl Default for ProfileCreateResponse
impl Default for ProfileCreateResponse
Source§fn default() -> ProfileCreateResponse
fn default() -> ProfileCreateResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProfileCreateResponse
impl<'de> Deserialize<'de> for ProfileCreateResponse
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 ProfileCreateResponse
impl PartialEq for ProfileCreateResponse
Source§fn eq(&self, other: &ProfileCreateResponse) -> bool
fn eq(&self, other: &ProfileCreateResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProfileCreateResponse
impl Serialize for ProfileCreateResponse
impl StructuralPartialEq for ProfileCreateResponse
Auto Trait Implementations§
impl Freeze for ProfileCreateResponse
impl RefUnwindSafe for ProfileCreateResponse
impl Send for ProfileCreateResponse
impl Sync for ProfileCreateResponse
impl Unpin for ProfileCreateResponse
impl UnsafeUnpin for ProfileCreateResponse
impl UnwindSafe for ProfileCreateResponse
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