Skip to main content

RelationEFTraitBound

Trait RelationEFTraitBound 

Source
pub trait RelationEFTraitBound<F: Clone>:
    Clone
    + Zero
    + From<F>
    + From<SecureField>
    + Mul<F, Output = Self>
    + Sub<Self, Output = Self> { }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<F, EF> RelationEFTraitBound<F> for EF
where F: Clone, EF: Clone + Zero + From<F> + From<SecureField> + Mul<F, Output = EF> + Sub<EF, Output = EF>,