pub struct LogDay {
pub date: String,
pub entries: Vec<LogEntry>,
}Expand description
All entries recorded under a single date heading.
Fields§
§date: StringThe ## heading text (an ISO-8601 date by convention).
entries: Vec<LogEntry>The bullet entries under this date.
Trait Implementations§
impl Eq for LogDay
impl StructuralPartialEq for LogDay
Auto Trait Implementations§
impl Freeze for LogDay
impl RefUnwindSafe for LogDay
impl Send for LogDay
impl Sync for LogDay
impl Unpin for LogDay
impl UnsafeUnpin for LogDay
impl UnwindSafe for LogDay
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