pub struct UpdateUserResponse {
pub user: Option<User>,
}
Fields§
§user: Option<User>
The user information.
Trait Implementations§
Source§impl Clone for UpdateUserResponse
impl Clone for UpdateUserResponse
Source§fn clone(&self) -> UpdateUserResponse
fn clone(&self) -> UpdateUserResponse
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 UpdateUserResponse
impl Debug for UpdateUserResponse
Source§impl Default for UpdateUserResponse
impl Default for UpdateUserResponse
Source§fn default() -> UpdateUserResponse
fn default() -> UpdateUserResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateUserResponse
impl<'de> Deserialize<'de> for UpdateUserResponse
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 UpdateUserResponse
impl PartialEq for UpdateUserResponse
impl StructuralPartialEq for UpdateUserResponse
Auto Trait Implementations§
impl Freeze for UpdateUserResponse
impl RefUnwindSafe for UpdateUserResponse
impl Send for UpdateUserResponse
impl Sync for UpdateUserResponse
impl Unpin for UpdateUserResponse
impl UnwindSafe for UpdateUserResponse
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