pub enum Yaml2JsonError {
SerdeYamlError(Error),
SerdeJsonError(Error),
IOError(Error),
}
Variants§
Trait Implementations§
Source§impl Debug for Yaml2JsonError
impl Debug for Yaml2JsonError
Source§impl Display for Yaml2JsonError
impl Display for Yaml2JsonError
Source§impl Error for Yaml2JsonError
impl Error for Yaml2JsonError
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 From<Error> for Yaml2JsonError
impl From<Error> for Yaml2JsonError
Source§impl From<Error> for Yaml2JsonError
impl From<Error> for Yaml2JsonError
Auto Trait Implementations§
impl Freeze for Yaml2JsonError
impl !RefUnwindSafe for Yaml2JsonError
impl Send for Yaml2JsonError
impl Sync for Yaml2JsonError
impl Unpin for Yaml2JsonError
impl !UnwindSafe for Yaml2JsonError
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