pub struct Assessed {
pub entry: Entry,
pub next_check: Option<Date>,
pub freshness: Option<Freshness>,
pub problems: Vec<Problem>,
}Expand description
One evaluated entry.
Fields§
§entry: EntryThe entry as parsed.
next_check: Option<Date>The date the next check falls due, when the date parsed.
freshness: Option<Freshness>How the entry stands against the clock, when the date parsed.
problems: Vec<Problem>Every problem the entry carries.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Assessed
impl RefUnwindSafe for Assessed
impl Send for Assessed
impl Sync for Assessed
impl Unpin for Assessed
impl UnsafeUnpin for Assessed
impl UnwindSafe for Assessed
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