Skip to main content

ApproximationKernel

Trait ApproximationKernel 

Source
pub trait ApproximationKernel<C> {
    // Required method
    fn kernel<S: ForestNodeLike>(
        &self,
        ctx: &C,
        current: &S,
        given: &S,
        atom: &Atom,
    ) -> Result<Atom>;
}

Required Methods§

Source

fn kernel<S: ForestNodeLike>( &self, ctx: &C, current: &S, given: &S, atom: &Atom, ) -> Result<Atom>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§