pub enum MWError {
ParseError(ParseError),
TransformationError(TransformationError),
}Expand description
Generic error type for high-level errors of this libaray.
Variants§
ParseError(ParseError)
TransformationError(TransformationError)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MWError
impl<'de> Deserialize<'de> for MWError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Error for MWError
impl Error for MWError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
impl StructuralPartialEq for MWError
Auto Trait Implementations§
impl Freeze for MWError
impl RefUnwindSafe for MWError
impl Send for MWError
impl Sync for MWError
impl Unpin for MWError
impl UnwindSafe for MWError
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