pub trait ScheduleLabel: 'static + Send + Sync + Debug {
    // Required methods
    fn dyn_clone(&self) -> Box<dyn ScheduleLabel>;
    fn as_dyn_eq(&self) -> &(dyn DynEq + 'static);
    fn dyn_hash(&self, state: &mut dyn Hasher);

    // Provided method
    fn intern(&self) -> Interned<dyn ScheduleLabel>
       where Self: Sized { ... }
}
Expand description

A strongly-typed class of labels used to identify an [Schedule].

Required Methods§

source

fn dyn_clone(&self) -> Box<dyn ScheduleLabel>

Clones this ScheduleLabel.

source

fn as_dyn_eq(&self) -> &(dyn DynEq + 'static)

Casts this value to a form where it can be compared with other type-erased values.

source

fn dyn_hash(&self, state: &mut dyn Hasher)

Feeds this value into the given Hasher.

Provided Methods§

source

fn intern(&self) -> Interned<dyn ScheduleLabel>
where Self: Sized,

Returns an Interned value corresponding to self.

Trait Implementations§

source§

impl Hash for dyn ScheduleLabel

source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
source§

impl Internable for dyn ScheduleLabel

source§

fn leak(&self) -> &'static dyn ScheduleLabel

Creates a static reference to self, possibly leaking memory.
source§

fn ref_eq(&self, other: &(dyn ScheduleLabel + 'static)) -> bool

Returns true if the two references point to the same value.
source§

fn ref_hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds the reference to the hasher.
source§

impl PartialEq for dyn ScheduleLabel

source§

fn eq(&self, other: &(dyn ScheduleLabel + 'static)) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for dyn ScheduleLabel

Implementors§

source§

impl ScheduleLabel for First
where First: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for FixedFirst
where FixedFirst: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for FixedLast
where FixedLast: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for FixedMain
where FixedMain: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for FixedPostUpdate
where FixedPostUpdate: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for FixedPreUpdate
where FixedPreUpdate: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for FixedUpdate
where FixedUpdate: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for Last
where Last: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for Main
where Main: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for PostStartup
where PostStartup: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for PostUpdate
where PostUpdate: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for PreStartup
where PreStartup: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for PreUpdate
where PreUpdate: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for RunFixedMainLoop
where RunFixedMainLoop: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for SpawnScene
where SpawnScene: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for Startup
where Startup: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for StateTransition
where StateTransition: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for Update
where Update: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl ScheduleLabel for Interned<dyn ScheduleLabel>

source§

impl<S> ScheduleLabel for OnEnter<S>
where S: States, OnEnter<S>: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl<S> ScheduleLabel for OnExit<S>
where S: States, OnExit<S>: 'static + Send + Sync + Clone + Eq + Debug + Hash,

source§

impl<S> ScheduleLabel for OnTransition<S>
where S: States, OnTransition<S>: 'static + Send + Sync + Clone + Eq + Debug + Hash,