[][src]Enum gcp_client::google::cloud::talent::v4beta1::JobView

#[repr(i32)]pub enum JobView {
    Unspecified,
    IdOnly,
    Minimal,
    Small,
    Full,
}

An enum that specifies the job attributes that are returned in the [MatchingJob.job][google.cloud.talent.v4beta1.SearchJobsResponse.MatchingJob.job] or [ListJobsResponse.jobs][google.cloud.talent.v4beta1.ListJobsResponse.jobs] fields.

Variants

Unspecified

Default value.

IdOnly

A ID only view of job, with following attributes: [Job.name][google.cloud.talent.v4beta1.Job.name], [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id], [Job.language_code][google.cloud.talent.v4beta1.Job.language_code].

Minimal

A minimal view of the job, with the following attributes: [Job.name][google.cloud.talent.v4beta1.Job.name], [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id], [Job.title][google.cloud.talent.v4beta1.Job.title], [Job.company][google.cloud.talent.v4beta1.Job.company], [Job.DerivedInfo.locations][google.cloud.talent.v4beta1.Job.DerivedInfo.locations], [Job.language_code][google.cloud.talent.v4beta1.Job.language_code].

Small

A small view of the job, with the following attributes in the search results: [Job.name][google.cloud.talent.v4beta1.Job.name], [Job.requisition_id][google.cloud.talent.v4beta1.Job.requisition_id], [Job.title][google.cloud.talent.v4beta1.Job.title], [Job.company][google.cloud.talent.v4beta1.Job.company], [Job.DerivedInfo.locations][google.cloud.talent.v4beta1.Job.DerivedInfo.locations], [Job.visibility][google.cloud.talent.v4beta1.Job.visibility], [Job.language_code][google.cloud.talent.v4beta1.Job.language_code], [Job.description][google.cloud.talent.v4beta1.Job.description].

Full

All available attributes are included in the search results.

Implementations

impl JobView[src]

pub fn is_valid(value: i32) -> bool[src]

Returns true if value is a variant of JobView.

pub fn from_i32(value: i32) -> Option<JobView>[src]

Converts an i32 to a JobView, or None if value is not a valid variant.

Trait Implementations

impl Clone for JobView[src]

impl Copy for JobView[src]

impl Debug for JobView[src]

impl Default for JobView[src]

impl Eq for JobView[src]

impl From<JobView> for i32[src]

impl Hash for JobView[src]

impl Ord for JobView[src]

impl PartialEq<JobView> for JobView[src]

impl PartialOrd<JobView> for JobView[src]

impl StructuralEq for JobView[src]

impl StructuralPartialEq for JobView[src]

Auto Trait Implementations

impl RefUnwindSafe for JobView

impl Send for JobView

impl Sync for JobView

impl Unpin for JobView

impl UnwindSafe for JobView

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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]