pub struct BirthInput {
pub date: BirthDate,
pub time: Option<BirthTime>,
pub location: Option<BirthLocation>,
}Expand description
Flexible input for partial chart calculations.
Fields§
§date: BirthDate§time: Option<BirthTime>§location: Option<BirthLocation>Trait Implementations§
Source§impl Clone for BirthInput
impl Clone for BirthInput
Source§fn clone(&self) -> BirthInput
fn clone(&self) -> BirthInput
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 BirthInput
impl RefUnwindSafe for BirthInput
impl Send for BirthInput
impl Sync for BirthInput
impl Unpin for BirthInput
impl UnwindSafe for BirthInput
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