pub struct SolarDto {
pub day: i32,
pub month: i32,
pub year: i32,
pub day_of_week: usize,
pub day_of_week_name: String,
pub date_string: String,
}Fields§
§day: i32§month: i32§year: i32§day_of_week: usize§day_of_week_name: String§date_string: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for SolarDto
impl<'de> Deserialize<'de> for SolarDto
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
Auto Trait Implementations§
impl Freeze for SolarDto
impl RefUnwindSafe for SolarDto
impl Send for SolarDto
impl Sync for SolarDto
impl Unpin for SolarDto
impl UnsafeUnpin for SolarDto
impl UnwindSafe for SolarDto
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