pub struct HistoricalPeriod {
pub period: String,
pub summary: String,
}Expand description
A historical period summary.
Fields§
§period: StringPeriod label (e.g., “2026-05”).
summary: StringSummary of activities in this period.
Trait Implementations§
Source§impl Clone for HistoricalPeriod
impl Clone for HistoricalPeriod
Source§fn clone(&self) -> HistoricalPeriod
fn clone(&self) -> HistoricalPeriod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for HistoricalPeriod
impl Debug for HistoricalPeriod
Source§impl<'de> Deserialize<'de> for HistoricalPeriod
impl<'de> Deserialize<'de> for HistoricalPeriod
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 HistoricalPeriod
impl RefUnwindSafe for HistoricalPeriod
impl Send for HistoricalPeriod
impl Sync for HistoricalPeriod
impl Unpin for HistoricalPeriod
impl UnsafeUnpin for HistoricalPeriod
impl UnwindSafe for HistoricalPeriod
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