[][src]Enum gcp_client::google::cloud::talent::v4beta1::compensation_info::CompensationType

#[repr(i32)]pub enum CompensationType {
    Unspecified,
    Base,
    Bonus,
    SigningBonus,
    Equity,
    ProfitSharing,
    Commissions,
    Tips,
    OtherCompensationType,
}

The type of compensation.

For compensation amounts specified in non-monetary amounts, describe the compensation scheme in the [CompensationEntry.description][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.description].

For example, tipping format is described in [CompensationEntry.description][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.description] (for example, "expect 15-20% tips based on customer bill.") and an estimate of the tips provided in [CompensationEntry.amount][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.amount] or [CompensationEntry.range][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.range] ($10 per hour).

For example, equity is described in [CompensationEntry.description][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.description] (for example, "1% - 2% equity vesting over 4 years, 1 year cliff") and value estimated in [CompensationEntry.amount][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.amount] or [CompensationEntry.range][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.range]. If no value estimate is possible, units are [CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED][google.cloud.talent.v4beta1.CompensationInfo.CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED] and then further clarified in [CompensationEntry.description][google.cloud.talent.v4beta1.CompensationInfo.CompensationEntry.description] field.

Variants

Unspecified

Default value.

Base

Base compensation: Refers to the fixed amount of money paid to an employee by an employer in return for work performed. Base compensation does not include benefits, bonuses or any other potential compensation from an employer.

Bonus

Bonus.

SigningBonus

Signing bonus.

Equity

Equity.

ProfitSharing

Profit sharing.

Commissions

Commission.

Tips

Tips.

OtherCompensationType

Other compensation type.

Implementations

impl CompensationType[src]

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

Returns true if value is a variant of CompensationType.

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

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

Trait Implementations

impl Clone for CompensationType[src]

impl Copy for CompensationType[src]

impl Debug for CompensationType[src]

impl Default for CompensationType[src]

impl Eq for CompensationType[src]

impl From<CompensationType> for i32[src]

impl Hash for CompensationType[src]

impl Ord for CompensationType[src]

impl PartialEq<CompensationType> for CompensationType[src]

impl PartialOrd<CompensationType> for CompensationType[src]

impl StructuralEq for CompensationType[src]

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