pub struct FixedStarPosition {
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 ecliptic_latitude: f64,
pub house: u8,
pub magnitude: f64,
pub symbolic_degree: i64,
}Expand description
A fixed star conjunct a chart point.
Fields§
§name: &'static strStar name, e.g. “Regulus”.
symbol: &'static strStar 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.
ecliptic_latitude: f64Ecliptic latitude at J2000, in degrees.
house: u8House (1-12) the point falls in.
magnitude: f64Apparent visual magnitude.
symbolic_degree: i64Symbolic degree (1-30) within the sign, as used by degree symbolism.
Trait Implementations§
Source§impl Clone for FixedStarPosition
impl Clone for FixedStarPosition
Source§impl Debug for FixedStarPosition
impl Debug for FixedStarPosition
Source§impl PartialEq for FixedStarPosition
impl PartialEq for FixedStarPosition
Source§impl Serialize for FixedStarPosition
impl Serialize for FixedStarPosition
impl StructuralPartialEq for FixedStarPosition
Auto Trait Implementations§
impl Freeze for FixedStarPosition
impl RefUnwindSafe for FixedStarPosition
impl Send for FixedStarPosition
impl Sync for FixedStarPosition
impl Unpin for FixedStarPosition
impl UnsafeUnpin for FixedStarPosition
impl UnwindSafe for FixedStarPosition
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