pub enum QuantizeError {
InvalidPath,
Nul(NulError),
Quantize(u32),
}Expand description
Errors returned by quantize.
Variants§
InvalidPath
An input or output path was not valid UTF-8 (cannot become a C string).
Nul(NulError)
A path contained an interior NUL byte.
Quantize(u32)
llama_model_quantize returned a non-zero status code.
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
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 UnsafeUnpin 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