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: String
Registrant base object.
city: String
Registrant base object.
comments: String
Registrant base object.
country: String
Registrant base object.
custom_questions: Vec<CustomQuestion>
Registrant base object.
email: String
User’s first name.
first_name: String
User’s first name.
industry: String
Registrant base object.
job_title: String
Registrant base object.
last_name: String
Registrant base object.
no_of_employees: String
Registrant base object.
org: String
Registrant base object.
phone: String
Registrant base object.
purchasing_time_frame: String
Registrant base object.
role_in_purchase_process: String
Registrant base object.
state: String
Registrant base object.
zip: String
Registrant base object.
Trait Implementations§
Source§impl Clone for Registrant
impl Clone for Registrant
Source§fn clone(&self) -> Registrant
fn clone(&self) -> Registrant
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 Registrant
impl Debug for Registrant
Source§impl<'de> Deserialize<'de> for Registrant
impl<'de> Deserialize<'de> for Registrant
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 JsonSchema for Registrant
impl JsonSchema for Registrant
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 moreSource§impl PartialEq for Registrant
impl PartialEq for Registrant
Source§impl Serialize for Registrant
impl Serialize for Registrant
impl StructuralPartialEq for Registrant
Auto Trait Implementations§
impl Freeze for Registrant
impl RefUnwindSafe for Registrant
impl Send for Registrant
impl Sync for Registrant
impl Unpin for Registrant
impl UnwindSafe for Registrant
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