pub enum TransError {
IoError(Error),
BoxError(Box<dyn Error>),
LanguageNotSet,
PathNotExist(String),
PathNotDIR(String),
}Variants§
Trait Implementations§
Source§impl Debug for TransError
impl Debug for TransError
Auto Trait Implementations§
impl Freeze for TransError
impl !RefUnwindSafe for TransError
impl !Send for TransError
impl !Sync for TransError
impl Unpin for TransError
impl !UnwindSafe for TransError
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