[][src]Struct google_jobs3::CompensationEntry

pub struct CompensationEntry {
    pub amount: Option<Money>,
    pub description: Option<String>,
    pub range: Option<CompensationRange>,
    pub type_: Option<String>,
    pub expected_units_per_year: Option<f64>,
    pub unit: Option<String>,
}

A compensation entry that represents one component of compensation, such as base pay, bonus, or other compensation type.

Annualization: One compensation entry can be annualized if

  • it contains valid amount or range.
  • and its expected_units_per_year is set or can be derived. Its annualized range is determined as (amount or range) times expected_units_per_year.

This type is not used in any activity, and only used as part of another schema.

Fields

amount: Option<Money>

Optional.

Compensation amount.

description: Option<String>

Optional.

Compensation description. For example, could indicate equity terms or provide additional context to an estimated bonus.

range: Option<CompensationRange>

Optional.

Compensation range.

type_: Option<String>

Optional.

Compensation type.

Default is CompensationUnit.COMPENSATION_TYPE_UNSPECIFIED.

expected_units_per_year: Option<f64>

Optional.

Expected number of units paid each year. If not specified, when Job.employment_types is FULLTIME, a default value is inferred based on unit. Default values:

  • HOURLY: 2080
  • DAILY: 260
  • WEEKLY: 52
  • MONTHLY: 12
  • ANNUAL: 1
unit: Option<String>

Optional.

Frequency of the specified amount.

Default is CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED.

Trait Implementations

impl Part for CompensationEntry[src]

impl Default for CompensationEntry[src]

impl Clone for CompensationEntry[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for CompensationEntry[src]

impl Serialize for CompensationEntry[src]

impl<'de> Deserialize<'de> for CompensationEntry[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]