pub enum EnhancerLoadError {
Open(OpenError),
Model(EnhanceError),
}Expand description
Why hydration failed.
Variants§
Open(OpenError)
The file could not be opened or its directory parsed.
Model(EnhanceError)
The tensor set does not describe the expected model geometry.
Trait Implementations§
Source§impl Debug for EnhancerLoadError
impl Debug for EnhancerLoadError
Source§impl Display for EnhancerLoadError
impl Display for EnhancerLoadError
Source§impl Error for EnhancerLoadError
impl Error for EnhancerLoadError
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
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl !RefUnwindSafe for EnhancerLoadError
impl !UnwindSafe for EnhancerLoadError
impl Freeze for EnhancerLoadError
impl Send for EnhancerLoadError
impl Sync for EnhancerLoadError
impl Unpin for EnhancerLoadError
impl UnsafeUnpin for EnhancerLoadError
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