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