pub enum QuantizeError {
Truncated,
DimMismatch {
expected: u32,
got: u32,
},
}Expand description
Error type for Sq8Vector byte-encoding parse failures.
Variants§
Truncated
Input ran out before the declared structure was complete.
DimMismatch
Declared dimension didn’t match the byte-payload length.
Trait Implementations§
Source§impl Clone for QuantizeError
impl Clone for QuantizeError
Source§fn clone(&self) -> QuantizeError
fn clone(&self) -> QuantizeError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for QuantizeError
Source§impl Debug for QuantizeError
impl Debug for QuantizeError
Source§impl Display for QuantizeError
impl Display for QuantizeError
impl Eq for QuantizeError
Source§impl PartialEq for QuantizeError
impl PartialEq for QuantizeError
impl StructuralPartialEq for QuantizeError
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