remove unnecessary Send impl on Field
This commit is contained in:
parent
ef5ef9252e
commit
1ecb793f68
1 changed files with 0 additions and 3 deletions
|
@ -60,7 +60,6 @@ pub trait Field:
|
|||
+ Ord
|
||||
+ Display
|
||||
+ Debug
|
||||
+ Send
|
||||
+ Add<Self, Output = Self>
|
||||
+ for<'a> Add<&'a Self, Output = Self>
|
||||
+ Sub<Self, Output = Self>
|
||||
|
@ -152,8 +151,6 @@ mod prime_field {
|
|||
value: BigInt,
|
||||
}
|
||||
|
||||
unsafe impl Send for FieldPrime {}
|
||||
|
||||
impl Field for FieldPrime {
|
||||
fn bits(&self) -> u32 {
|
||||
self.value.bits() as u32
|
||||
|
|
Loading…
Reference in a new issue