pub trait Visualizer: App {
const DATA_LIMIT: usize = 10_000usize;
// Required method
fn new(cc: &CreationContext<'_>, rx: Receiver<EpochState>) -> Self;
}Expand description
Any type that can be rendered and updated during training
Provided Associated Constants§
const DATA_LIMIT: usize = 10_000usize
Required Methods§
fn new(cc: &CreationContext<'_>, rx: Receiver<EpochState>) -> 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.