pub struct ParentInformation {Show 16 fields
pub member_id: Option<i64>,
pub person_guid: Option<String>,
pub first_name: String,
pub middle_name: Option<String>,
pub last_name: String,
pub nick_name: Option<String>,
pub person_full_name: Option<String>,
pub email: Option<String>,
pub home_phone: Option<String>,
pub mobile_phone: Option<String>,
pub work_phone: Option<String>,
pub address1: Option<String>,
pub address2: Option<String>,
pub city: Option<String>,
pub state: Option<String>,
pub zip: Option<String>,
}Fields§
§member_id: Option<i64>§person_guid: Option<String>§first_name: String§middle_name: Option<String>§last_name: String§nick_name: Option<String>§person_full_name: Option<String>§email: Option<String>§home_phone: Option<String>§mobile_phone: Option<String>§work_phone: Option<String>§address1: Option<String>§address2: Option<String>§city: Option<String>§state: Option<String>§zip: Option<String>Trait Implementations§
Source§impl Clone for ParentInformation
impl Clone for ParentInformation
Source§fn clone(&self) -> ParentInformation
fn clone(&self) -> ParentInformation
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 ParentInformation
impl Debug for ParentInformation
Source§impl<'de> Deserialize<'de> for ParentInformation
impl<'de> Deserialize<'de> for ParentInformation
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
Auto Trait Implementations§
impl Freeze for ParentInformation
impl RefUnwindSafe for ParentInformation
impl Send for ParentInformation
impl Sync for ParentInformation
impl Unpin for ParentInformation
impl UnsafeUnpin for ParentInformation
impl UnwindSafe for ParentInformation
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