pub trait IntoRing<'a, RingReducer> {
type RingElement: 'a;
// Required method
fn into_ring(self, reducer: &'a RingReducer) -> Self::RingElement;
}Expand description
Trait for types that can be converted into an IntoRing::RingElement by a RingReducer.