pub struct Lot {
pub name: &'static str,
pub symbol: &'static str,
pub sign: &'static str,
pub sign_symbol: &'static str,
pub degree: i64,
pub minute: i64,
pub ecliptic_longitude: f64,
pub house: u8,
pub formula_used: String,
pub is_diurnal: bool,
pub symbolic_degree: i64,
}Expand description
An Arabic part (lot) placed in the chart.
Fields§
§name: &'static strLot name, e.g. “Fortune”.
symbol: &'static strLot glyph.
sign: &'static strZodiac sign name, e.g. “Taurus”.
sign_symbol: &'static strZodiac sign glyph, e.g. “♉”.
degree: i64Whole degrees within the sign (0-29).
minute: i64Arc minutes past degree (0-59).
ecliptic_longitude: f64Ecliptic longitude in degrees [0, 360), tropical or sidereal as requested.
house: u8House (1-12) the point falls in.
formula_used: StringFormula applied, e.g. “ASC + Moon - Sun (Day)”.
is_diurnal: boolWhether the chart is diurnal (Sun above the horizon), which selects the formula.
symbolic_degree: i64Symbolic degree (1-30) within the sign, as used by degree symbolism.
Trait Implementations§
impl StructuralPartialEq for Lot
Auto Trait Implementations§
impl Freeze for Lot
impl RefUnwindSafe for Lot
impl Send for Lot
impl Sync for Lot
impl Unpin for Lot
impl UnsafeUnpin for Lot
impl UnwindSafe for Lot
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