pub struct SummariesRange {
pub date: String,
pub start: DateTime<Utc>,
pub end: DateTime<Utc>,
pub text: String,
pub timezone: String,
}
Fields§
§date: String
this day as Date string in YEAR-MONTH-DAY format
start: DateTime<Utc>
start of this day as ISO 8601 UTC datetime
end: DateTime<Utc>
end of this day as ISO 8601 UTC datetime
text: String
this day in human-readable format relative to the current day
timezone: String
timezone used for this request in Olson Country/Region format
Trait Implementations§
Source§impl Debug for SummariesRange
impl Debug for SummariesRange
Source§impl<'de> Deserialize<'de> for SummariesRange
impl<'de> Deserialize<'de> for SummariesRange
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 SummariesRange
impl RefUnwindSafe for SummariesRange
impl Send for SummariesRange
impl Sync for SummariesRange
impl Unpin for SummariesRange
impl UnwindSafe for SummariesRange
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