pub unsafe trait PackedField:
FieldAlgebra<F = Self::Scalar>
+ PackedValue<Value = Self::Scalar>
+ From<Self::Scalar>
+ Add<Self::Scalar, Output = Self>
+ AddAssign<Self::Scalar>
+ Sub<Self::Scalar, Output = Self>
+ SubAssign<Self::Scalar>
+ Mul<Self::Scalar, Output = Self>
+ MulAssign<Self::Scalar>
+ Div<Self::Scalar, Output = Self> {
type Scalar: Field;
}Expand description
§Safety
- See
PackedValueabove.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.