pub struct HoraryData {
pub planetary_hours: PlanetaryHours,
pub ascendant_sign: &'static str,
pub ascendant_degree: String,
pub traditional_asc_ruler: &'static str,
pub modern_asc_ruler: &'static str,
pub is_radical: bool,
pub strictures: Vec<Stricture>,
pub moon_status: MoonStatus,
}Expand description
The horary-specific part of a horary chart.
Fields§
§planetary_hours: PlanetaryHoursPlanetary day and hour.
ascendant_sign: &'static strSign on the Ascendant.
ascendant_degree: StringAscendant as text, e.g. “12° 34’ Leo”.
traditional_asc_ruler: &'static strTraditional ruler of the Ascendant sign.
modern_asc_ruler: &'static strModern ruler of the Ascendant sign.
is_radical: boolWhether the hour ruler matches the Ascendant’s ruler or triplicity ruler.
strictures: Vec<Stricture>Considerations before judgement that apply.
moon_status: MoonStatusThe Moon’s condition.
Trait Implementations§
Source§impl Clone for HoraryData
impl Clone for HoraryData
Source§impl Debug for HoraryData
impl Debug for HoraryData
Source§impl PartialEq for HoraryData
impl PartialEq for HoraryData
Source§impl Serialize for HoraryData
impl Serialize for HoraryData
impl StructuralPartialEq for HoraryData
Auto Trait Implementations§
impl Freeze for HoraryData
impl RefUnwindSafe for HoraryData
impl Send for HoraryData
impl Sync for HoraryData
impl Unpin for HoraryData
impl UnsafeUnpin for HoraryData
impl UnwindSafe for HoraryData
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