[][src]Enum gcp_client::google::cloud::talent::v4beta1::employer_filter::EmployerFilterMode

#[repr(i32)]pub enum EmployerFilterMode {
    Unspecified,
    AllEmploymentRecords,
    CurrentEmploymentRecordsOnly,
    PastEmploymentRecordsOnly,
}

Enum indicating which set of [Profile.employment_records][google.cloud.talent.v4beta1.Profile.employment_records] to search against.

Variants

Unspecified

Default value.

AllEmploymentRecords

Apply to all employers in [Profile.employment_records][google.cloud.talent.v4beta1.Profile.employment_records].

CurrentEmploymentRecordsOnly

Apply only to current employer in [Profile.employment_records][google.cloud.talent.v4beta1.Profile.employment_records].

PastEmploymentRecordsOnly

Apply only to past (not current) employers in [Profile.employment_records][google.cloud.talent.v4beta1.Profile.employment_records].

Implementations

impl EmployerFilterMode[src]

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

Returns true if value is a variant of EmployerFilterMode.

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

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

Trait Implementations

impl Clone for EmployerFilterMode[src]

impl Copy for EmployerFilterMode[src]

impl Debug for EmployerFilterMode[src]

impl Default for EmployerFilterMode[src]

impl Eq for EmployerFilterMode[src]

impl From<EmployerFilterMode> for i32[src]

impl Hash for EmployerFilterMode[src]

impl Ord for EmployerFilterMode[src]

impl PartialEq<EmployerFilterMode> for EmployerFilterMode[src]

impl PartialOrd<EmployerFilterMode> for EmployerFilterMode[src]

impl StructuralEq for EmployerFilterMode[src]

impl StructuralPartialEq for EmployerFilterMode[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<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]