pub struct BirthData {
pub year: i32,
pub month: i32,
pub day: i32,
pub hour: i32,
pub minute: i32,
pub second: f64,
pub lat: f64,
pub lon: f64,
}Expand description
Basic data for birth info in UTC.
Fields§
§year: i32§month: i32§day: i32§hour: i32§minute: i32§second: f64§lat: f64§lon: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for BirthData
impl RefUnwindSafe for BirthData
impl Send for BirthData
impl Sync for BirthData
impl Unpin for BirthData
impl UnwindSafe for BirthData
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