pub struct LegalEntityDob {
pub day: Option<i64>,
pub month: Option<i64>,
pub year: Option<i64>,
}
Fields§
§day: Option<i64>
The day of birth, between 1 and 31.
month: Option<i64>
The month of birth, between 1 and 12.
year: Option<i64>
The four-digit year of birth.
Trait Implementations§
Source§impl Clone for LegalEntityDob
impl Clone for LegalEntityDob
Source§fn clone(&self) -> LegalEntityDob
fn clone(&self) -> LegalEntityDob
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 LegalEntityDob
impl Debug for LegalEntityDob
Source§impl Deserialize for LegalEntityDob
impl Deserialize for LegalEntityDob
Source§impl FromValueOpt for LegalEntityDob
impl FromValueOpt for LegalEntityDob
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for LegalEntityDob
impl ObjectDeser for LegalEntityDob
impl Copy for LegalEntityDob
Auto Trait Implementations§
impl Freeze for LegalEntityDob
impl RefUnwindSafe for LegalEntityDob
impl Send for LegalEntityDob
impl Sync for LegalEntityDob
impl Unpin for LegalEntityDob
impl UnwindSafe for LegalEntityDob
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