Struct google_plus1::PersonOrganizations
source · pub struct PersonOrganizations {
pub start_date: Option<String>,
pub end_date: Option<String>,
pub description: Option<String>,
pub title: Option<String>,
pub primary: Option<bool>,
pub location: Option<String>,
pub department: Option<String>,
pub type_: Option<String>,
pub name: Option<String>,
}Expand description
A list of current or past organizations with which this person is associated.
This type is not used in any activity, and only used as part of another schema.
Fields§
§start_date: Option<String>The date that the person joined this organization.
end_date: Option<String>The date that the person left this organization.
description: Option<String>A short description of the person’s role in this organization. Deprecated.
title: Option<String>The person’s job title or role within the organization.
primary: Option<bool>If “true”, indicates this organization is the person’s primary one, which is typically interpreted as the current one.
location: Option<String>The location of this organization. Deprecated.
department: Option<String>The department within the organization. Deprecated.
type_: Option<String>The type of organization. Possible values include, but are not limited to, the following values:
- “work” - Work.
- “school” - School.
name: Option<String>The name of the organization.
Trait Implementations§
source§impl Clone for PersonOrganizations
impl Clone for PersonOrganizations
source§fn clone(&self) -> PersonOrganizations
fn clone(&self) -> PersonOrganizations
Returns a copy 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 PersonOrganizations
impl Debug for PersonOrganizations
source§impl Default for PersonOrganizations
impl Default for PersonOrganizations
source§fn default() -> PersonOrganizations
fn default() -> PersonOrganizations
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PersonOrganizations
impl<'de> Deserialize<'de> for PersonOrganizations
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 Serialize for PersonOrganizations
impl Serialize for PersonOrganizations
impl NestedType for PersonOrganizations
impl Part for PersonOrganizations
Auto Trait Implementations§
impl Freeze for PersonOrganizations
impl RefUnwindSafe for PersonOrganizations
impl Send for PersonOrganizations
impl Sync for PersonOrganizations
impl Unpin for PersonOrganizations
impl UnwindSafe for PersonOrganizations
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more