pub struct LegalEntityRegistrationDate {
pub day: Option<i64>,
pub month: Option<i64>,
pub year: Option<i64>,
}Fields§
§day: Option<i64>The day of registration, between 1 and 31.
month: Option<i64>The month of registration, between 1 and 12.
year: Option<i64>The four-digit year of registration.
Trait Implementations§
Source§impl Clone for LegalEntityRegistrationDate
impl Clone for LegalEntityRegistrationDate
Source§fn clone(&self) -> LegalEntityRegistrationDate
fn clone(&self) -> LegalEntityRegistrationDate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LegalEntityRegistrationDate
impl Debug for LegalEntityRegistrationDate
Source§impl FromValueOpt for LegalEntityRegistrationDate
impl FromValueOpt for LegalEntityRegistrationDate
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for LegalEntityRegistrationDate
impl PartialEq for LegalEntityRegistrationDate
Source§fn eq(&self, other: &LegalEntityRegistrationDate) -> bool
fn eq(&self, other: &LegalEntityRegistrationDate) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LegalEntityRegistrationDate
impl Eq for LegalEntityRegistrationDate
impl StructuralPartialEq for LegalEntityRegistrationDate
Auto Trait Implementations§
impl Freeze for LegalEntityRegistrationDate
impl RefUnwindSafe for LegalEntityRegistrationDate
impl Send for LegalEntityRegistrationDate
impl Sync for LegalEntityRegistrationDate
impl Unpin for LegalEntityRegistrationDate
impl UnsafeUnpin for LegalEntityRegistrationDate
impl UnwindSafe for LegalEntityRegistrationDate
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