[][src]Struct gusto_api::Termination

pub struct Termination {
    pub id: u64,
    pub version: String,
    pub employee_id: u64,
    pub active: bool,
    pub effective_date: NaiveDate,
    pub run_termination_payroll: bool,
}

Termination. FROM: https://docs.gusto.com/v1/terminations

Fields

id: u64version: Stringemployee_id: u64active: booleffective_date: NaiveDaterun_termination_payroll: bool

Trait Implementations

impl Clone for Termination[src]

impl Debug for Termination[src]

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

impl Serialize for Termination[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<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.