pub struct HouseCusp {
pub house_number: u8,
pub sign: &'static str,
pub sign_symbol: &'static str,
pub degree: i64,
pub minute: i64,
pub ecliptic_longitude: f64,
pub symbolic_degree: i64,
}Expand description
The cusp of one house.
Fields§
§house_number: u8House number (1-12).
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.
symbolic_degree: i64Symbolic degree (1-30) within the sign, as used by degree symbolism.
Trait Implementations§
impl StructuralPartialEq for HouseCusp
Auto Trait Implementations§
impl Freeze for HouseCusp
impl RefUnwindSafe for HouseCusp
impl Send for HouseCusp
impl Sync for HouseCusp
impl Unpin for HouseCusp
impl UnsafeUnpin for HouseCusp
impl UnwindSafe for HouseCusp
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