pub trait AdditiveLoop: AbstractLoop<Additive, Element = Self::Element> {
type Element: AdditiveLoopElement<Parent = Self>;
// Provided method
fn is_additive_loop(&self) -> bool { ... }
}Required Associated Types§
type Element: AdditiveLoopElement<Parent = Self>
Provided Methods§
fn is_additive_loop(&self) -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".