pub enum TicketProblem {
Frontmatter(FrontmatterError),
MissingName,
MissingBlockedBy,
InvalidBlockedBy,
EmptyBody,
}Expand description
A single problem with a ticket file, phrased without the file path so several can be listed under one path heading.
Variants§
Trait Implementations§
Source§impl Debug for TicketProblem
impl Debug for TicketProblem
Source§impl Display for TicketProblem
impl Display for TicketProblem
Source§impl From<FrontmatterError> for TicketProblem
impl From<FrontmatterError> for TicketProblem
Source§fn from(error: FrontmatterError) -> Self
fn from(error: FrontmatterError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TicketProblem
impl RefUnwindSafe for TicketProblem
impl Send for TicketProblem
impl Sync for TicketProblem
impl Unpin for TicketProblem
impl UnsafeUnpin for TicketProblem
impl UnwindSafe for TicketProblem
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