Struct gusto_api::types::EmployeeCustomField
source · pub struct EmployeeCustomField {
pub company_custom_field_id: String,
pub description: String,
pub id: String,
pub name: String,
pub selection_options: Vec<String>,
pub type_: CustomFieldType,
pub value: String,
}Expand description
A custom field of an employee
Fields
company_custom_field_id: StringA unique identifier of the employee in Gusto.
description: StringA custom field of an employee
id: StringA unique identifier of the employee in Gusto.
name: StringA unique identifier of the employee in Gusto.
selection_options: Vec<String>A custom field of an employee
type_: CustomFieldTypevalue: StringA unique identifier of the employee in Gusto.
Trait Implementations
sourceimpl Clone for EmployeeCustomField
impl Clone for EmployeeCustomField
sourcefn clone(&self) -> EmployeeCustomField
fn clone(&self) -> EmployeeCustomField
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 EmployeeCustomField
impl Debug for EmployeeCustomField
sourceimpl<'de> Deserialize<'de> for EmployeeCustomField
impl<'de> Deserialize<'de> for EmployeeCustomField
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 EmployeeCustomField
impl JsonSchema for EmployeeCustomField
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<EmployeeCustomField> for EmployeeCustomField
impl PartialEq<EmployeeCustomField> for EmployeeCustomField
sourcefn eq(&self, other: &EmployeeCustomField) -> bool
fn eq(&self, other: &EmployeeCustomField) -> bool
sourceimpl Serialize for EmployeeCustomField
impl Serialize for EmployeeCustomField
impl StructuralPartialEq for EmployeeCustomField
Auto Trait Implementations
impl RefUnwindSafe for EmployeeCustomField
impl Send for EmployeeCustomField
impl Sync for EmployeeCustomField
impl Unpin for EmployeeCustomField
impl UnwindSafe for EmployeeCustomField
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