pub enum YamlLoaderError {
CannotScanYaml {
detail: Box<dyn Debug + Send>,
},
Conversion(YamlError),
}
Variants§
Trait Implementations§
Source§impl Debug for YamlLoaderError
impl Debug for YamlLoaderError
Source§impl From<YamlLoaderError> for Error
impl From<YamlLoaderError> for Error
Source§fn from(this: YamlLoaderError) -> Self
fn from(this: YamlLoaderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for YamlLoaderError
impl !RefUnwindSafe for YamlLoaderError
impl Send for YamlLoaderError
impl !Sync for YamlLoaderError
impl Unpin for YamlLoaderError
impl !UnwindSafe for YamlLoaderError
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