pub trait Threaten {
// Required method
fn convert<Object: Into<Issue>, const N: usize>(
&mut self,
threat: Threat<Object, N>,
) -> Problem;
}Required Methods§
fn convert<Object: Into<Issue>, const N: usize>( &mut self, threat: Threat<Object, N>, ) -> Problem
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".