#[non_exhaustive]pub enum CompilePhase {
Begin,
UnitCheck,
Check,
Init,
End,
Unknown,
}Expand description
Perl compile/runtime phase.
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 CompilePhase
impl Clone for CompilePhase
Source§fn clone(&self) -> CompilePhase
fn clone(&self) -> CompilePhase
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 moreSource§impl Debug for CompilePhase
impl Debug for CompilePhase
Source§impl Hash for CompilePhase
impl Hash for CompilePhase
Source§impl PartialEq for CompilePhase
impl PartialEq for CompilePhase
Source§fn eq(&self, other: &CompilePhase) -> bool
fn eq(&self, other: &CompilePhase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CompilePhase
impl Eq for CompilePhase
impl StructuralPartialEq for CompilePhase
Auto Trait Implementations§
impl Freeze for CompilePhase
impl RefUnwindSafe for CompilePhase
impl Send for CompilePhase
impl Sync for CompilePhase
impl Unpin for CompilePhase
impl UnsafeUnpin for CompilePhase
impl UnwindSafe for CompilePhase
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