Skip to main content

FieldStore

Trait FieldStore 

Source
pub trait FieldStore: RingStore + EuclideanRingStore
where Self::Type: Field,
{ // Provided method fn div(&self, lhs: &El<Self>, rhs: &El<Self>) -> El<Self> { ... } }
Expand description

Trait for RingStores that store Fields. Mainly used to provide a convenient interface to the Field-functions.

Provided Methods§

Source

fn div(&self, lhs: &El<Self>, rhs: &El<Self>) -> El<Self>

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.

Implementors§

Source§

impl<R> FieldStore for R
where R: RingStore, R::Type: Field,