pub enum QuantizeError {
FileNotFound(String),
FileOpenError(String),
FileWriteError(String),
InvalidModel,
InvalidQuantizationType,
QuantizationFailed(String),
}Expand description
Error type for quantization operations
Variants§
FileNotFound(String)
FileOpenError(String)
FileWriteError(String)
InvalidModel
InvalidQuantizationType
QuantizationFailed(String)
Trait Implementations§
Source§impl Debug for QuantizeError
impl Debug for QuantizeError
Source§impl Display for QuantizeError
impl Display for QuantizeError
Source§impl Error for QuantizeError
impl Error for QuantizeError
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 Freeze for QuantizeError
impl RefUnwindSafe for QuantizeError
impl Send for QuantizeError
impl Sync for QuantizeError
impl Unpin for QuantizeError
impl UnwindSafe for QuantizeError
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