pub trait FiniteElementBlock<C, F, const G: usize, const N: usize>{
// Required methods
fn isolate(self, elements: &[usize]) -> Vec<(Self, [Vec<usize>; 3])>;
fn reset(&mut self);
}Required Methods§
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.