pub enum FitParamsError {
InvalidPath,
CouldNotFit,
Failed,
}Expand description
Errors from fit_params.
Variants§
InvalidPath
The model path could not be encoded as a C string.
CouldNotFit
Fitting could not find allocations that fit device memory.
Failed
A hard error occurred (e.g. model file missing).
Trait Implementations§
Source§impl Debug for FitParamsError
impl Debug for FitParamsError
Source§impl Display for FitParamsError
impl Display for FitParamsError
impl Eq for FitParamsError
Source§impl Error for FitParamsError
impl Error for FitParamsError
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()
Source§impl PartialEq for FitParamsError
impl PartialEq for FitParamsError
Source§fn eq(&self, other: &FitParamsError) -> bool
fn eq(&self, other: &FitParamsError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FitParamsError
Auto Trait Implementations§
impl Freeze for FitParamsError
impl RefUnwindSafe for FitParamsError
impl Send for FitParamsError
impl Sync for FitParamsError
impl Unpin for FitParamsError
impl UnsafeUnpin for FitParamsError
impl UnwindSafe for FitParamsError
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