pub struct ApplicantFields {Show 31 fields
pub name: String,
pub position: String,
pub status: String,
pub timestamp: DateTime<Utc>,
pub email: String,
pub phone: String,
pub location: Option<String>,
pub github: Option<String>,
pub linkedin: Option<String>,
pub portfolio: Option<String>,
pub website: Option<String>,
pub resume: String,
pub materials: String,
pub value_reflected: Option<String>,
pub value_violated: Option<String>,
pub values_in_tension: Option<Vec<String>>,
pub resume_contents: Option<String>,
pub materials_contents: Option<String>,
pub work_samples: Option<String>,
pub writing_samples: Option<String>,
pub analysis_samples: Option<String>,
pub presentation_samples: Option<String>,
pub exploratory_samples: Option<String>,
pub question_technically_challenging: Option<String>,
pub question_proud_of: Option<String>,
pub question_happiest: Option<String>,
pub question_unhappiest: Option<String>,
pub question_value_reflected: Option<String>,
pub question_value_violated: Option<String>,
pub question_values_in_tension: Option<String>,
pub question_why_oxide: Option<String>,
}Expand description
The Airtable fields type for Applicants.
Fields§
§name: String§position: String§status: String§timestamp: DateTime<Utc>§email: String§phone: String§location: Option<String>§github: Option<String>§linkedin: Option<String>§portfolio: Option<String>§website: Option<String>§resume: String§materials: String§value_reflected: Option<String>§value_violated: Option<String>§values_in_tension: Option<Vec<String>>§resume_contents: Option<String>§materials_contents: Option<String>§work_samples: Option<String>§writing_samples: Option<String>§analysis_samples: Option<String>§presentation_samples: Option<String>§exploratory_samples: Option<String>§question_technically_challenging: Option<String>§question_proud_of: Option<String>§question_happiest: Option<String>§question_unhappiest: Option<String>§question_value_reflected: Option<String>§question_value_violated: Option<String>§question_values_in_tension: Option<String>§question_why_oxide: Option<String>Trait Implementations§
Source§impl Clone for ApplicantFields
impl Clone for ApplicantFields
Source§fn clone(&self) -> ApplicantFields
fn clone(&self) -> ApplicantFields
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ApplicantFields
impl Debug for ApplicantFields
Source§impl<'de> Deserialize<'de> for ApplicantFields
impl<'de> Deserialize<'de> for ApplicantFields
Source§fn 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
Source§impl PartialEq for ApplicantFields
impl PartialEq for ApplicantFields
Auto Trait Implementations§
impl Freeze for ApplicantFields
impl RefUnwindSafe for ApplicantFields
impl Send for ApplicantFields
impl Sync for ApplicantFields
impl Unpin for ApplicantFields
impl UnwindSafe for ApplicantFields
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more