pub struct GelatoDataDocumentReportIssuedDate {
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 GelatoDataDocumentReportIssuedDate
impl Clone for GelatoDataDocumentReportIssuedDate
Source§fn clone(&self) -> GelatoDataDocumentReportIssuedDate
fn clone(&self) -> GelatoDataDocumentReportIssuedDate
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 GelatoDataDocumentReportIssuedDate
impl FromValueOpt for GelatoDataDocumentReportIssuedDate
fn from_value(v: Value) -> Option<Self>
impl Copy for GelatoDataDocumentReportIssuedDate
Auto Trait Implementations§
impl Freeze for GelatoDataDocumentReportIssuedDate
impl RefUnwindSafe for GelatoDataDocumentReportIssuedDate
impl Send for GelatoDataDocumentReportIssuedDate
impl Sync for GelatoDataDocumentReportIssuedDate
impl Unpin for GelatoDataDocumentReportIssuedDate
impl UnwindSafe for GelatoDataDocumentReportIssuedDate
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