pub struct UpdateProfileRequest {
pub name: Option<String>,
pub display_name: Option<String>,
pub email: Option<String>,
pub bio: Option<String>,
pub avatar_path: Option<String>,
}Fields§
§name: Option<String>§display_name: Option<String>§email: Option<String>§bio: Option<String>§avatar_path: Option<String>Trait Implementations§
Source§impl Debug for UpdateProfileRequest
impl Debug for UpdateProfileRequest
Source§impl<'de> Deserialize<'de> for UpdateProfileRequest
impl<'de> Deserialize<'de> for UpdateProfileRequest
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
Auto Trait Implementations§
impl Freeze for UpdateProfileRequest
impl RefUnwindSafe for UpdateProfileRequest
impl Send for UpdateProfileRequest
impl Sync for UpdateProfileRequest
impl Unpin for UpdateProfileRequest
impl UnsafeUnpin for UpdateProfileRequest
impl UnwindSafe for UpdateProfileRequest
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