pub enum Problem {
FileAccess,
BlankLine(usize),
InvalidTimeStamp(usize),
MissingTask(usize),
InvalidMarker(usize),
EventsOrder(usize),
EventLength(usize),
}
Expand description
Problems that can be found in a logfile
Problems contain the line number where the problem was discovered, except FileAccess.
Variants§
FileAccess
BlankLine(usize)
InvalidTimeStamp(usize)
MissingTask(usize)
InvalidMarker(usize)
EventsOrder(usize)
EventLength(usize)
Trait Implementations§
impl Eq for Problem
impl StructuralPartialEq for Problem
Auto Trait Implementations§
impl Freeze for Problem
impl RefUnwindSafe for Problem
impl Send for Problem
impl Sync for Problem
impl Unpin for Problem
impl UnwindSafe for Problem
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