pub enum ScrumpError {
Io(Error),
UnsupportedFormat(String),
InvalidFile(String),
RedactionFailed(String),
Other(String),
}Expand description
Errors produced by format and engine code.
Variants§
Trait Implementations§
Source§impl Debug for ScrumpError
impl Debug for ScrumpError
Source§impl Display for ScrumpError
impl Display for ScrumpError
Source§impl Error for ScrumpError
impl Error for ScrumpError
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()
Auto Trait Implementations§
impl Freeze for ScrumpError
impl !RefUnwindSafe for ScrumpError
impl Send for ScrumpError
impl Sync for ScrumpError
impl Unpin for ScrumpError
impl UnsafeUnpin for ScrumpError
impl !UnwindSafe for ScrumpError
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