pub struct PartialChart {
pub sun_sign: Option<String>,
pub moon_sign: Option<String>,
pub asc_sign: Option<String>,
}Expand description
Partial chart where missing inputs yield missing outputs.
Fields§
§sun_sign: Option<String>§moon_sign: Option<String>§asc_sign: Option<String>Trait Implementations§
Source§impl Clone for PartialChart
impl Clone for PartialChart
Source§fn clone(&self) -> PartialChart
fn clone(&self) -> PartialChart
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PartialChart
impl RefUnwindSafe for PartialChart
impl Send for PartialChart
impl Sync for PartialChart
impl Unpin for PartialChart
impl UnwindSafe for PartialChart
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