pub trait ExternalParams: Send + Sync {
Show 18 methods fn a1(&self) -> f32; fn a2(&self) -> f32; fn a3(&self) -> f32; fn b1(&self) -> f32 { ... } fn b2(&self) -> f32 { ... } fn b3(&self) -> f32 { ... } fn c1(&self) -> f32 { ... } fn c2(&self) -> f32 { ... } fn c3(&self) -> f32 { ... } fn d1(&self) -> f32 { ... } fn d2(&self) -> f32 { ... } fn d3(&self) -> f32 { ... } fn e1(&self) -> f32 { ... } fn e2(&self) -> f32 { ... } fn e3(&self) -> f32 { ... } fn f1(&self) -> f32 { ... } fn f2(&self) -> f32 { ... } fn f3(&self) -> f32 { ... }
}
Expand description

This trait needs to be implemented by the caller of the NodeExecutor if it wants to provide the parameters for the “ExtA” to “ExtL” nodes.

Required Methods

Provided Methods

Implementors