pub enum SystemStage {
Startup,
AssetSync,
AssetSyncDeps,
PreUpdate,
Update,
PostUpdate,
PreRender,
Render,
PostRender,
}Variants§
Trait Implementations§
Source§impl Clone for SystemStage
impl Clone for SystemStage
Source§fn clone(&self) -> SystemStage
fn clone(&self) -> SystemStage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SystemStage
Source§impl Debug for SystemStage
impl Debug for SystemStage
impl Eq for SystemStage
Source§impl Hash for SystemStage
impl Hash for SystemStage
Source§impl Ord for SystemStage
impl Ord for SystemStage
Source§fn cmp(&self, other: &SystemStage) -> Ordering
fn cmp(&self, other: &SystemStage) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SystemStage
impl PartialEq for SystemStage
Source§fn eq(&self, other: &SystemStage) -> bool
fn eq(&self, other: &SystemStage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SystemStage
impl PartialOrd for SystemStage
impl StructuralPartialEq for SystemStage
Auto Trait Implementations§
impl Freeze for SystemStage
impl RefUnwindSafe for SystemStage
impl Send for SystemStage
impl Sync for SystemStage
impl Unpin for SystemStage
impl UnsafeUnpin for SystemStage
impl UnwindSafe for SystemStage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more