#[non_exhaustive]pub enum EngineConstructionStage {
RotationCompile,
SpecConstruction,
}Expand description
Construction stage that retained a lower-layer failure.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for EngineConstructionStage
impl Clone for EngineConstructionStage
Source§fn clone(&self) -> EngineConstructionStage
fn clone(&self) -> EngineConstructionStage
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EngineConstructionStage
impl Debug for EngineConstructionStage
Source§impl PartialEq for EngineConstructionStage
impl PartialEq for EngineConstructionStage
impl Copy for EngineConstructionStage
impl Eq for EngineConstructionStage
impl StructuralPartialEq for EngineConstructionStage
Auto Trait Implementations§
impl Freeze for EngineConstructionStage
impl RefUnwindSafe for EngineConstructionStage
impl Send for EngineConstructionStage
impl Sync for EngineConstructionStage
impl Unpin for EngineConstructionStage
impl UnsafeUnpin for EngineConstructionStage
impl UnwindSafe for EngineConstructionStage
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