pub struct MoonPhase {
pub j_date: f64,
pub phase: f64,
pub age: f64,
pub fraction: f64,
pub distance: f64,
pub latitude: f64,
pub longitude: f64,
pub phase_name: &'static str,
pub zodiac_name: &'static str,
}Fields§
§j_date: f64§phase: f64§age: f64§fraction: f64§distance: f64§latitude: f64§longitude: f64§phase_name: &'static str§zodiac_name: &'static strImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MoonPhase
impl RefUnwindSafe for MoonPhase
impl Send for MoonPhase
impl Sync for MoonPhase
impl Unpin for MoonPhase
impl UnwindSafe for MoonPhase
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