pub enum SimdError {
InputLengthMismatch {
left: usize,
right: usize,
},
OutputLengthMismatch {
input: usize,
output: usize,
},
}Expand description
Invalid source/destination slice relationship passed to a bulk operation.
Variants§
InputLengthMismatch
Two input planes that must be elementwise aligned have different sizes.
OutputLengthMismatch
The output plane does not have one element for each input element.
Trait Implementations§
impl Copy for SimdError
impl Eq for SimdError
impl StructuralPartialEq for SimdError
Auto Trait Implementations§
impl Freeze for SimdError
impl RefUnwindSafe for SimdError
impl Send for SimdError
impl Sync for SimdError
impl Unpin for SimdError
impl UnsafeUnpin for SimdError
impl UnwindSafe for SimdError
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