pub trait IdentifiedViewSystem {
// Required method
fn identifier() -> ViewSystemIdentifier;
}
Expand description
Trait for naming/identifying crate::VisualizerSystem
s & crate::ViewContextSystem
s.
Required to be implemented for registration.
Required Methods§
Sourcefn identifier() -> ViewSystemIdentifier
fn identifier() -> ViewSystemIdentifier
Unique name for a system within a given crate::SpaceViewClass
.
Note that this is not unique across the entire application.
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.