pub struct UpdateProfileRequest<'a> {
pub nickname: Option<&'a str>,
pub email: Option<&'a str>,
pub avatar: Option<&'a str>,
}Expand description
Update profile request
Fields§
§nickname: Option<&'a str>§email: Option<&'a str>§avatar: Option<&'a str>Trait Implementations§
Source§impl<'a> Debug for UpdateProfileRequest<'a>
impl<'a> Debug for UpdateProfileRequest<'a>
Auto Trait Implementations§
impl<'a> Freeze for UpdateProfileRequest<'a>
impl<'a> RefUnwindSafe for UpdateProfileRequest<'a>
impl<'a> Send for UpdateProfileRequest<'a>
impl<'a> Sync for UpdateProfileRequest<'a>
impl<'a> Unpin for UpdateProfileRequest<'a>
impl<'a> UnwindSafe for UpdateProfileRequest<'a>
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