pub enum ReverseError {
Unmapped(StateCategory),
Ambiguous(StateCategory, Vec<String>),
}Expand description
Failure resolving a normalized category back to a board column for write-back.
Variants§
Unmapped(StateCategory)
No column maps to this category and no override was given.
Ambiguous(StateCategory, Vec<String>)
More than one column maps to this category; an explicit override is required.
Trait Implementations§
Source§impl Clone for ReverseError
impl Clone for ReverseError
Source§fn clone(&self) -> ReverseError
fn clone(&self) -> ReverseError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReverseError
impl Debug for ReverseError
Source§impl Display for ReverseError
impl Display for ReverseError
Source§impl Error for ReverseError
impl Error for ReverseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for ReverseError
impl PartialEq for ReverseError
impl Eq for ReverseError
impl StructuralPartialEq for ReverseError
Auto Trait Implementations§
impl Freeze for ReverseError
impl RefUnwindSafe for ReverseError
impl Send for ReverseError
impl Sync for ReverseError
impl Unpin for ReverseError
impl UnsafeUnpin for ReverseError
impl UnwindSafe for ReverseError
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