pub struct BirthDate {
pub year: i32,
pub month: i32,
pub day: i32,
}Expand description
Date-only birth info in UTC.
Fields§
§year: i32§month: i32§day: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for BirthDate
impl RefUnwindSafe for BirthDate
impl Send for BirthDate
impl Sync for BirthDate
impl Unpin for BirthDate
impl UnwindSafe for BirthDate
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