Struct gusto_api::types::PrimaryPayrollAdmin
source · pub struct PrimaryPayrollAdmin {
pub email: String,
pub first_name: String,
pub last_name: String,
pub phone: String,
}Expand description
The primary payroll admin of the company.
Fields
email: StringThe primary payroll admin of the company.
first_name: StringThe primary payroll admin of the company.
last_name: StringThe primary payroll admin of the company.
phone: StringThe primary payroll admin of the company.
Trait Implementations
sourceimpl Clone for PrimaryPayrollAdmin
impl Clone for PrimaryPayrollAdmin
sourcefn clone(&self) -> PrimaryPayrollAdmin
fn clone(&self) -> PrimaryPayrollAdmin
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for PrimaryPayrollAdmin
impl Debug for PrimaryPayrollAdmin
sourceimpl<'de> Deserialize<'de> for PrimaryPayrollAdmin
impl<'de> Deserialize<'de> for PrimaryPayrollAdmin
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl JsonSchema for PrimaryPayrollAdmin
impl JsonSchema for PrimaryPayrollAdmin
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<PrimaryPayrollAdmin> for PrimaryPayrollAdmin
impl PartialEq<PrimaryPayrollAdmin> for PrimaryPayrollAdmin
sourcefn eq(&self, other: &PrimaryPayrollAdmin) -> bool
fn eq(&self, other: &PrimaryPayrollAdmin) -> bool
sourceimpl Serialize for PrimaryPayrollAdmin
impl Serialize for PrimaryPayrollAdmin
impl StructuralPartialEq for PrimaryPayrollAdmin
Auto Trait Implementations
impl RefUnwindSafe for PrimaryPayrollAdmin
impl Send for PrimaryPayrollAdmin
impl Sync for PrimaryPayrollAdmin
impl Unpin for PrimaryPayrollAdmin
impl UnwindSafe for PrimaryPayrollAdmin
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more