diff --git a/src/field.rs b/src/field.rs index af5cdd6..9cfa1a3 100644 --- a/src/field.rs +++ b/src/field.rs @@ -36,7 +36,7 @@ pub trait Field: + for<'a> DivAssign<&'a Self> { /// Underlying representation of an element - type Inner: Debug + Eq + Clone; + type Inner: Debug + Eq + Clone + Sync + Send; fn inner(&self) -> &Self::Inner; fn inner_mut(&mut self) -> &mut Self::Inner;