[][src]Struct gcp_client::google::cloud::talent::v4beta1::EducationRecord

pub struct EducationRecord {
    pub start_date: Option<Date>,
    pub end_date: Option<Date>,
    pub expected_graduation_date: Option<Date>,
    pub school_name: String,
    pub address: Option<Address>,
    pub description: String,
    pub is_current: Option<bool>,
    pub school_name_snippet: String,
    pub degree_snippet: String,
    pub degree: Option<Degree>,
}

Resource that represents an education record of a candidate.

Fields

start_date: Option<Date>

The start date of the education.

end_date: Option<Date>

The end date of the education.

expected_graduation_date: Option<Date>

The expected graduation date if currently pursuing a degree.

school_name: String

The name of the school or institution.

For example, "Stanford University", "UC Berkeley", and so on.

Number of characters allowed is 250.

address: Option<Address>

The physical address of the education institution.

description: String

The description of the education.

Number of characters allowed is 100,000.

is_current: Option<bool>

If this education is current.

school_name_snippet: String

Output only. The school name snippet shows how the [school_name][google.cloud.talent.v4beta1.EducationRecord.school_name] is related to a search query in search result. It's empty if the [school_name][google.cloud.talent.v4beta1.EducationRecord.school_name] isn't related to the search query.

degree_snippet: String

Output only. The job description snippet shows how the [Degree][google.cloud.talent.v4beta1.Degree] is related to a search query in search result. It's empty if the [Degree][google.cloud.talent.v4beta1.Degree] isn't related to the search query.

degree: Option<Degree>

The degree information. It can be one of [degree_description][google.cloud.talent.v4beta1.EducationRecord.degree_description] or [structured_degree][google.cloud.talent.v4beta1.EducationRecord.structured_degree].

Trait Implementations

impl Clone for EducationRecord[src]

impl Debug for EducationRecord[src]

impl Default for EducationRecord[src]

impl Message for EducationRecord[src]

impl PartialEq<EducationRecord> for EducationRecord[src]

impl StructuralPartialEq for EducationRecord[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]