pub enum Lint {
GraphNotADag(Path<'static>),
InvalidOwnership(Path<'static>),
TooMuchWork(Path<'static>, String),
HigherPriority(Path<'static>, Path<'static>),
}Expand description
The different kinds of lint that can be detected by onboard.
Variants§
GraphNotADag(Path<'static>)
The objective graph is not a directed acyclic graph.
InvalidOwnership(Path<'static>)
An objective has neither an owner nor an accountable party.
TooMuchWork(Path<'static>, String)
An objective has too much work assigned to a single person.
HigherPriority(Path<'static>, Path<'static>)
An objective has a higher-number/lower-priority than its parent.
Trait Implementations§
impl Eq for Lint
impl StructuralPartialEq for Lint
Auto Trait Implementations§
impl Freeze for Lint
impl RefUnwindSafe for Lint
impl Send for Lint
impl Sync for Lint
impl Unpin for Lint
impl UnwindSafe for Lint
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