pub struct SelectLinkedInOrganizationRequest {
pub profile_id: String,
pub temp_token: String,
pub user_profile: Value,
pub account_type: AccountType,
pub selected_organization: Option<Value>,
pub redirect_url: Option<String>,
}Fields§
§profile_id: String§temp_token: String§user_profile: Value§account_type: AccountType§selected_organization: Option<Value>§redirect_url: Option<String>Implementations§
Source§impl SelectLinkedInOrganizationRequest
impl SelectLinkedInOrganizationRequest
pub fn new( profile_id: String, temp_token: String, user_profile: Value, account_type: AccountType, ) -> SelectLinkedInOrganizationRequest
Trait Implementations§
Source§impl Clone for SelectLinkedInOrganizationRequest
impl Clone for SelectLinkedInOrganizationRequest
Source§fn clone(&self) -> SelectLinkedInOrganizationRequest
fn clone(&self) -> SelectLinkedInOrganizationRequest
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 Default for SelectLinkedInOrganizationRequest
impl Default for SelectLinkedInOrganizationRequest
Source§fn default() -> SelectLinkedInOrganizationRequest
fn default() -> SelectLinkedInOrganizationRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SelectLinkedInOrganizationRequest
impl<'de> Deserialize<'de> for SelectLinkedInOrganizationRequest
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 SelectLinkedInOrganizationRequest
impl PartialEq for SelectLinkedInOrganizationRequest
Source§fn eq(&self, other: &SelectLinkedInOrganizationRequest) -> bool
fn eq(&self, other: &SelectLinkedInOrganizationRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SelectLinkedInOrganizationRequest
Auto Trait Implementations§
impl Freeze for SelectLinkedInOrganizationRequest
impl RefUnwindSafe for SelectLinkedInOrganizationRequest
impl Send for SelectLinkedInOrganizationRequest
impl Sync for SelectLinkedInOrganizationRequest
impl Unpin for SelectLinkedInOrganizationRequest
impl UnsafeUnpin for SelectLinkedInOrganizationRequest
impl UnwindSafe for SelectLinkedInOrganizationRequest
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