pub struct DtoUpdateUserInfoPayload {
pub location: Option<String>,
pub nickname: Option<String>,
pub readme_repo_id: Option<i64>,
pub site: Option<String>,
pub wechat_mp: Option<String>,
pub company: Option<String>,
pub name: Option<String>,
pub bio: Option<String>,
pub wechat_mp_qrcode: Option<String>,
pub readme_repo_path: Option<String>,
pub address: Option<String>,
}Expand description
DtoUpdateUserInfoPayload 模型
Fields§
§location: Option<String>§nickname: Option<String>§readme_repo_id: Option<i64>§site: Option<String>§wechat_mp: Option<String>§company: Option<String>§name: Option<String>§bio: Option<String>§wechat_mp_qrcode: Option<String>§readme_repo_path: Option<String>§address: Option<String>Trait Implementations§
Source§impl Clone for DtoUpdateUserInfoPayload
impl Clone for DtoUpdateUserInfoPayload
Source§fn clone(&self) -> DtoUpdateUserInfoPayload
fn clone(&self) -> DtoUpdateUserInfoPayload
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 DtoUpdateUserInfoPayload
impl Debug for DtoUpdateUserInfoPayload
Source§impl<'de> Deserialize<'de> for DtoUpdateUserInfoPayload
impl<'de> Deserialize<'de> for DtoUpdateUserInfoPayload
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 DtoUpdateUserInfoPayload
impl RefUnwindSafe for DtoUpdateUserInfoPayload
impl Send for DtoUpdateUserInfoPayload
impl Sync for DtoUpdateUserInfoPayload
impl Unpin for DtoUpdateUserInfoPayload
impl UnsafeUnpin for DtoUpdateUserInfoPayload
impl UnwindSafe for DtoUpdateUserInfoPayload
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