pub struct PersonBodyCreate {Show 19 fields
pub id: String,
pub first_name: String,
pub last_name: Option<String>,
pub description: Option<String>,
pub email: String,
pub skype_id: Option<String>,
pub google_id: Option<String>,
pub instant_message_id: Option<String>,
pub job_title: Option<String>,
pub location: Option<String>,
pub company: Option<Company>,
pub mobile: Option<String>,
pub telephone: Option<String>,
pub user_status: Option<String>,
pub enabled: Option<bool>,
pub email_notifications_enabled: Option<bool>,
pub password: String,
pub aspect_names: Option<Vec<String>>,
pub properties: Option<AnyObj>,
}
Fields§
§id: String
§first_name: String
§last_name: Option<String>
§description: Option<String>
§email: String
§skype_id: Option<String>
§google_id: Option<String>
§instant_message_id: Option<String>
§job_title: Option<String>
§location: Option<String>
§company: Option<Company>
§mobile: Option<String>
§telephone: Option<String>
§user_status: Option<String>
§enabled: Option<bool>
§email_notifications_enabled: Option<bool>
§password: String
§aspect_names: Option<Vec<String>>
§properties: Option<AnyObj>
Trait Implementations§
Source§impl Clone for PersonBodyCreate
impl Clone for PersonBodyCreate
Source§fn clone(&self) -> PersonBodyCreate
fn clone(&self) -> PersonBodyCreate
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 Debug for PersonBodyCreate
impl Debug for PersonBodyCreate
Source§impl<'de> Deserialize<'de> for PersonBodyCreate
impl<'de> Deserialize<'de> for PersonBodyCreate
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 PersonBodyCreate
impl RefUnwindSafe for PersonBodyCreate
impl Send for PersonBodyCreate
impl Sync for PersonBodyCreate
impl Unpin for PersonBodyCreate
impl UnwindSafe for PersonBodyCreate
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