pub enum TestFileError {
IoError(Error),
ThreadError(Box<dyn Any + Send + 'static>),
}
Variants§
Trait Implementations§
Source§impl Debug for TestFileError
impl Debug for TestFileError
Source§impl From<Error> for TestFileError
impl From<Error> for TestFileError
Source§fn from(err: Error) -> TestFileError
fn from(err: Error) -> TestFileError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TestFileError
impl !RefUnwindSafe for TestFileError
impl Send for TestFileError
impl !Sync for TestFileError
impl Unpin for TestFileError
impl !UnwindSafe for TestFileError
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