pub struct NatalPoint {
pub name: String,
pub ecliptic_longitude: f64,
}Expand description
A natal point, as in a stored chart’s planets list (other fields are ignored).
Fields§
§name: StringBody or angle name, e.g. “Sun”, “Ascendant”.
ecliptic_longitude: f64Ecliptic longitude in degrees.
Trait Implementations§
Source§impl Clone for NatalPoint
impl Clone for NatalPoint
Source§impl Debug for NatalPoint
impl Debug for NatalPoint
Source§impl<'de> Deserialize<'de> for NatalPoint
impl<'de> Deserialize<'de> for NatalPoint
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NatalPoint
impl PartialEq for NatalPoint
Source§impl Serialize for NatalPoint
impl Serialize for NatalPoint
impl StructuralPartialEq for NatalPoint
Auto Trait Implementations§
impl Freeze for NatalPoint
impl RefUnwindSafe for NatalPoint
impl Send for NatalPoint
impl Sync for NatalPoint
impl Unpin for NatalPoint
impl UnsafeUnpin for NatalPoint
impl UnwindSafe for NatalPoint
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