pub struct ApplyingAspect {
pub planet: &'static str,
pub aspect: &'static str,
pub degrees_to_exact: f64,
pub target_sign: &'static str,
}Expand description
A Ptolemaic aspect the Moon perfects before leaving its sign.
Fields§
§planet: &'static strPlanet aspected (Sun to Saturn).
aspect: &'static strAspect name, e.g. “Trine”.
degrees_to_exact: f64Degrees the Moon has left to travel to exactness.
target_sign: &'static strThe Moon’s current sign.
Trait Implementations§
Source§impl Clone for ApplyingAspect
impl Clone for ApplyingAspect
Source§impl Debug for ApplyingAspect
impl Debug for ApplyingAspect
Source§impl PartialEq for ApplyingAspect
impl PartialEq for ApplyingAspect
Source§impl Serialize for ApplyingAspect
impl Serialize for ApplyingAspect
impl StructuralPartialEq for ApplyingAspect
Auto Trait Implementations§
impl Freeze for ApplyingAspect
impl RefUnwindSafe for ApplyingAspect
impl Send for ApplyingAspect
impl Sync for ApplyingAspect
impl Unpin for ApplyingAspect
impl UnsafeUnpin for ApplyingAspect
impl UnwindSafe for ApplyingAspect
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