[][src]Enum gcp_client::google::cloud::talent::v4beta1::compensation_filter::FilterType

#[repr(i32)]pub enum FilterType {
    Unspecified,
    UnitOnly,
    UnitAndAmount,
    AnnualizedBaseAmount,
    AnnualizedTotalAmount,
}

Specify the type of filtering.

Variants

Unspecified

Filter type unspecified. Position holder, INVALID, should never be used.

UnitOnly

Filter by base compensation entry's unit. A job is a match if and only if the job contains a base CompensationEntry and the base CompensationEntry's unit matches provided [units][google.cloud.talent.v4beta1.CompensationFilter.units]. Populate one or more [units][google.cloud.talent.v4beta1.CompensationFilter.units].

See [CompensationInfo.CompensationEntry][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry] for definition of base compensation entry.

UnitAndAmount

Filter by base compensation entry's unit and amount / range. A job is a match if and only if the job contains a base CompensationEntry, and the base entry's unit matches provided [CompensationUnit][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit] and amount or range overlaps with provided [CompensationRange][google.cloud.talent.v4beta1.CompensationInfo.CompensationRange].

See [CompensationInfo.CompensationEntry][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry] for definition of base compensation entry.

Set exactly one [units][google.cloud.talent.v4beta1.CompensationFilter.units] and populate [range][google.cloud.talent.v4beta1.CompensationFilter.range].

AnnualizedBaseAmount

Filter by annualized base compensation amount and base compensation entry's unit. Populate [range][google.cloud.talent.v4beta1.CompensationFilter.range] and zero or more [units][google.cloud.talent.v4beta1.CompensationFilter.units].

AnnualizedTotalAmount

Filter by annualized total compensation amount and base compensation entry's unit . Populate [range][google.cloud.talent.v4beta1.CompensationFilter.range] and zero or more [units][google.cloud.talent.v4beta1.CompensationFilter.units].

Implementations

impl FilterType[src]

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

Returns true if value is a variant of FilterType.

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

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

Trait Implementations

impl Clone for FilterType[src]

impl Copy for FilterType[src]

impl Debug for FilterType[src]

impl Default for FilterType[src]

impl Eq for FilterType[src]

impl From<FilterType> for i32[src]

impl Hash for FilterType[src]

impl Ord for FilterType[src]

impl PartialEq<FilterType> for FilterType[src]

impl PartialOrd<FilterType> for FilterType[src]

impl StructuralEq for FilterType[src]

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