Struct zoom_api::types::Registrant
source · pub struct Registrant {Show 17 fields
pub address: String,
pub city: String,
pub comments: String,
pub country: String,
pub custom_questions: Vec<CustomQuestion>,
pub email: String,
pub first_name: String,
pub industry: String,
pub job_title: String,
pub last_name: String,
pub no_of_employees: String,
pub org: String,
pub phone: String,
pub purchasing_time_frame: String,
pub role_in_purchase_process: String,
pub state: String,
pub zip: String,
}Expand description
Registrant base object.
Fields
address: StringRegistrant base object.
city: StringRegistrant base object.
comments: StringRegistrant base object.
country: StringRegistrant base object.
custom_questions: Vec<CustomQuestion>Registrant base object.
email: StringUser’s first name.
first_name: StringUser’s first name.
industry: StringRegistrant base object.
job_title: StringRegistrant base object.
last_name: StringRegistrant base object.
no_of_employees: StringRegistrant base object.
org: StringRegistrant base object.
phone: StringRegistrant base object.
purchasing_time_frame: StringRegistrant base object.
role_in_purchase_process: StringRegistrant base object.
state: StringRegistrant base object.
zip: StringRegistrant base object.
Trait Implementations
sourceimpl Clone for Registrant
impl Clone for Registrant
sourcefn clone(&self) -> Registrant
fn clone(&self) -> Registrant
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 Registrant
impl Debug for Registrant
sourceimpl<'de> Deserialize<'de> for Registrant
impl<'de> Deserialize<'de> for Registrant
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 Registrant
impl JsonSchema for Registrant
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<Registrant> for Registrant
impl PartialEq<Registrant> for Registrant
sourcefn eq(&self, other: &Registrant) -> bool
fn eq(&self, other: &Registrant) -> bool
sourceimpl Serialize for Registrant
impl Serialize for Registrant
impl StructuralPartialEq for Registrant
Auto Trait Implementations
impl RefUnwindSafe for Registrant
impl Send for Registrant
impl Sync for Registrant
impl Unpin for Registrant
impl UnwindSafe for Registrant
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