pub struct PatchUsersUpdateAuthenticated {
pub name: Option<String>,
pub email: Option<String>,
pub blog: Option<String>,
pub twitter_username: Option<String>,
pub company: Option<String>,
pub location: Option<String>,
pub hireable: Option<bool>,
pub bio: Option<String>,
}Fields§
§name: Option<String>The new name of the user.
email: Option<String>The publicly visible email address of the user.
blog: Option<String>The new blog URL of the user.
twitter_username: Option<String>The new Twitter username of the user.
company: Option<String>The new company of the user.
location: Option<String>The new location of the user.
hireable: Option<bool>The new hiring availability of the user.
bio: Option<String>The new short biography of the user.
Trait Implementations§
Source§impl Clone for PatchUsersUpdateAuthenticated
impl Clone for PatchUsersUpdateAuthenticated
Source§fn clone(&self) -> PatchUsersUpdateAuthenticated
fn clone(&self) -> PatchUsersUpdateAuthenticated
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 Default for PatchUsersUpdateAuthenticated
impl Default for PatchUsersUpdateAuthenticated
Source§fn default() -> PatchUsersUpdateAuthenticated
fn default() -> PatchUsersUpdateAuthenticated
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchUsersUpdateAuthenticated
impl<'de> Deserialize<'de> for PatchUsersUpdateAuthenticated
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 PatchUsersUpdateAuthenticated
impl PartialEq for PatchUsersUpdateAuthenticated
Source§fn eq(&self, other: &PatchUsersUpdateAuthenticated) -> bool
fn eq(&self, other: &PatchUsersUpdateAuthenticated) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchUsersUpdateAuthenticated
Auto Trait Implementations§
impl Freeze for PatchUsersUpdateAuthenticated
impl RefUnwindSafe for PatchUsersUpdateAuthenticated
impl Send for PatchUsersUpdateAuthenticated
impl Sync for PatchUsersUpdateAuthenticated
impl Unpin for PatchUsersUpdateAuthenticated
impl UnwindSafe for PatchUsersUpdateAuthenticated
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