pub enum Stage {
Boot,
Update,
View(Id),
Layout(Id),
Interact(Id),
Draw(Id),
Present(Id),
Prepare(Primitive),
Render(Primitive),
Custom(String),
}
Variants§
Boot
Update
View(Id)
Layout(Id)
Interact(Id)
Draw(Id)
Present(Id)
Prepare(Primitive)
Render(Primitive)
Custom(String)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Stage
impl<'de> Deserialize<'de> for Stage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for Stage
impl Ord for Stage
Source§impl PartialOrd for Stage
impl PartialOrd for Stage
impl Eq for Stage
impl StructuralPartialEq for Stage
Auto Trait Implementations§
impl Freeze for Stage
impl RefUnwindSafe for Stage
impl Send for Stage
impl Sync for Stage
impl Unpin for Stage
impl UnwindSafe for Stage
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