Record

Struct Record 

Source
pub struct Record {
Show 59 fields pub first_name: String, pub middle_name: String, pub last_name: String, pub phonetic_first_name: String, pub phonetic_middle_name: String, pub phonetic_last_name: String, pub name_prefix: String, pub name_suffix: String, pub nickname: String, pub file_as: String, pub organization_name: String, pub organization_title: String, pub organization_department: String, pub birthday: String, pub notes: String, pub photo: String, pub labels: String, pub email_1_label: String, pub email_1_value: String, pub email_2_label: String, pub email_2_value: String, pub email_3_label: String, pub email_3_value: String, pub email_4_label: String, pub email_4_value: String, pub phone_1_label: String, pub phone_1_value: String, pub phone_2_label: String, pub phone_2_value: String, pub phone_3_label: String, pub phone_3_value: String, pub phone_4_label: String, pub phone_4_value: String, pub address_1_label: String, pub address_1_formatted: String, pub address_1_street: String, pub address_1_city: String, pub address_1_po_box: String, pub address_1_region: String, pub address_1_postal_code: String, pub address_1_country: String, pub address_1_extended_address: String, pub address_2_label: String, pub address_2_formatted: String, pub address_2_street: String, pub address_2_city: String, pub address_2_po_box: String, pub address_2_region: String, pub address_2_postal_code: String, pub address_2_country: String, pub address_2_extended_address: String, pub relation_1_label: String, pub relation_1_value: String, pub website_1_label: String, pub website_1_value: String, pub event_1_label: String, pub event_1_value: String, pub custom_field_1_label: String, pub custom_field_1_value: String,
}

Fields§

§first_name: String§middle_name: String§last_name: String§phonetic_first_name: String§phonetic_middle_name: String§phonetic_last_name: String§name_prefix: String§name_suffix: String§nickname: String§file_as: String§organization_name: String§organization_title: String§organization_department: String§birthday: String§notes: String§photo: String§labels: String§email_1_label: String§email_1_value: String§email_2_label: String§email_2_value: String§email_3_label: String§email_3_value: String§email_4_label: String§email_4_value: String§phone_1_label: String§phone_1_value: String§phone_2_label: String§phone_2_value: String§phone_3_label: String§phone_3_value: String§phone_4_label: String§phone_4_value: String§address_1_label: String§address_1_formatted: String§address_1_street: String§address_1_city: String§address_1_po_box: String§address_1_region: String§address_1_postal_code: String§address_1_country: String§address_1_extended_address: String§address_2_label: String§address_2_formatted: String§address_2_street: String§address_2_city: String§address_2_po_box: String§address_2_region: String§address_2_postal_code: String§address_2_country: String§address_2_extended_address: String§relation_1_label: String§relation_1_value: String§website_1_label: String§website_1_value: String§event_1_label: String§event_1_value: String§custom_field_1_label: String§custom_field_1_value: String

Trait Implementations§

Source§

impl Debug for Record

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Record

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations§

§

impl Freeze for Record

§

impl RefUnwindSafe for Record

§

impl Send for Record

§

impl Sync for Record

§

impl Unpin for Record

§

impl UnwindSafe for Record

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,