pub struct UsersUpdateAuthenticatedRequest {
pub name: Option<String>,
pub email: Option<String>,
pub blog: Option<String>,
pub twitter_username: Option<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<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.
Implementations§
Trait Implementations§
Source§impl Clone for UsersUpdateAuthenticatedRequest
impl Clone for UsersUpdateAuthenticatedRequest
Source§fn clone(&self) -> UsersUpdateAuthenticatedRequest
fn clone(&self) -> UsersUpdateAuthenticatedRequest
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 UsersUpdateAuthenticatedRequest
impl Default for UsersUpdateAuthenticatedRequest
Source§fn default() -> UsersUpdateAuthenticatedRequest
fn default() -> UsersUpdateAuthenticatedRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UsersUpdateAuthenticatedRequest
impl<'de> Deserialize<'de> for UsersUpdateAuthenticatedRequest
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 UsersUpdateAuthenticatedRequest
impl PartialEq for UsersUpdateAuthenticatedRequest
Source§fn eq(&self, other: &UsersUpdateAuthenticatedRequest) -> bool
fn eq(&self, other: &UsersUpdateAuthenticatedRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UsersUpdateAuthenticatedRequest
Auto Trait Implementations§
impl Freeze for UsersUpdateAuthenticatedRequest
impl RefUnwindSafe for UsersUpdateAuthenticatedRequest
impl Send for UsersUpdateAuthenticatedRequest
impl Sync for UsersUpdateAuthenticatedRequest
impl Unpin for UsersUpdateAuthenticatedRequest
impl UnwindSafe for UsersUpdateAuthenticatedRequest
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