pub struct SolarInfo {
pub day: i32,
pub month: i32,
pub year: i32,
pub day_of_week: usize,
pub day_of_week_name: String,
pub date_string: String,
}Expand description
Solar date information
Fields§
§day: i32§month: i32§year: i32§day_of_week: usize§day_of_week_name: String§date_string: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for SolarInfo
impl RefUnwindSafe for SolarInfo
impl Send for SolarInfo
impl Sync for SolarInfo
impl Unpin for SolarInfo
impl UnsafeUnpin for SolarInfo
impl UnwindSafe for SolarInfo
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