Struct google_jobs4::api::CompensationEntry [−][src]
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>Compensation amount.
description: Option<String>Compensation description. For example, could indicate equity terms or provide additional context to an estimated bonus.
expected_units_per_year: Option<f64>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
range: Option<CompensationRange>Compensation range.
type_: Option<String>Compensation type. Default is CompensationType.COMPENSATION_TYPE_UNSPECIFIED.
unit: Option<String>Frequency of the specified amount. Default is CompensationUnit.COMPENSATION_UNIT_UNSPECIFIED.
Trait Implementations
impl Clone for CompensationEntry[src]
fn clone(&self) -> CompensationEntry[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for CompensationEntry[src]
impl Default for CompensationEntry[src]
fn default() -> CompensationEntry[src]
impl<'de> Deserialize<'de> for CompensationEntry[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for CompensationEntry[src]
impl Serialize for CompensationEntry[src]
Auto Trait Implementations
impl RefUnwindSafe for CompensationEntry[src]
impl Send for CompensationEntry[src]
impl Sync for CompensationEntry[src]
impl Unpin for CompensationEntry[src]
impl UnwindSafe for CompensationEntry[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,