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.
Object Safety§
This trait is not object safe.