Struct specs::SystemInfo [] [src]

pub struct SystemInfo<C> {
    pub name: String,
    pub priority: Priority,
    pub object: Box<System<C>>,
}

System information package, where the system itself is accompanied by its name and priority.

Fields

name: String

Name of the system. Can be used for lookups or debug output.

priority: Priority

Priority of the system.

object: Box<System<C>>

System trait object itself.