pub struct Factor {
pub factor: &'static str,
pub details: String,
pub hot: f64,
pub cold: f64,
pub wet: f64,
pub dry: f64,
}Expand description
One contribution to the temperament, with its weighted qualities.
Fields§
§factor: &'static strWhat contributes, e.g. “Ascendant Sign”.
details: StringThe placement behind it, e.g. “Leo (Fire)”.
hot: f64Weighted hot.
cold: f64Weighted cold.
wet: f64Weighted wet.
dry: f64Weighted dry.
Trait Implementations§
impl StructuralPartialEq for Factor
Auto Trait Implementations§
impl Freeze for Factor
impl RefUnwindSafe for Factor
impl Send for Factor
impl Sync for Factor
impl Unpin for Factor
impl UnsafeUnpin for Factor
impl UnwindSafe for Factor
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