FiniteElementBlock

Trait FiniteElementBlock 

Source
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§

Source

fn isolate(self, elements: &[usize]) -> Vec<(Self, [Vec<usize>; 3])>

Source

fn reset(&mut self)

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.

Implementors§

Source§

impl<C, F, const G: usize, const N: usize, const P: usize> FiniteElementBlock<C, F, G, N> for Block<C, F, G, 3, N, P>