pub struct LogDay {
pub date: String,
pub entries: Vec<String>,
}Expand description
One dated group of log entries.
Fields§
§date: StringISO 8601 YYYY-MM-DD. §9 requires this exact form for date headings.
entries: Vec<String>The day’s entries, each already prefixed with its kind (**Update**: …).
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.