pub struct UserProfileResponse {
pub first_name: Option<String>,
pub last_name: Option<String>,
pub bio: Option<String>,
pub avatar_url: Option<String>,
pub timezone: Option<String>,
pub locale: Option<String>,
}Expand description
User profile response DTO
Fields§
§first_name: Option<String>§last_name: Option<String>§bio: Option<String>§avatar_url: Option<String>§timezone: Option<String>§locale: Option<String>Trait Implementations§
Source§impl Debug for UserProfileResponse
impl Debug for UserProfileResponse
Auto Trait Implementations§
impl Freeze for UserProfileResponse
impl RefUnwindSafe for UserProfileResponse
impl Send for UserProfileResponse
impl Sync for UserProfileResponse
impl Unpin for UserProfileResponse
impl UnsafeUnpin for UserProfileResponse
impl UnwindSafe for UserProfileResponse
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