#[repr(u32)]pub enum perl_phase {
PERL_PHASE_CONSTRUCT = 0,
PERL_PHASE_START = 1,
PERL_PHASE_CHECK = 2,
PERL_PHASE_INIT = 3,
PERL_PHASE_RUN = 4,
PERL_PHASE_END = 5,
PERL_PHASE_DESTRUCT = 6,
}Variants§
PERL_PHASE_CONSTRUCT = 0
PERL_PHASE_START = 1
PERL_PHASE_CHECK = 2
PERL_PHASE_INIT = 3
PERL_PHASE_RUN = 4
PERL_PHASE_END = 5
PERL_PHASE_DESTRUCT = 6
Trait Implementations§
Source§impl Clone for perl_phase
impl Clone for perl_phase
Source§fn clone(&self) -> perl_phase
fn clone(&self) -> perl_phase
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 perl_phase
impl Debug for perl_phase
Source§impl Hash for perl_phase
impl Hash for perl_phase
Source§impl Ord for perl_phase
impl Ord for perl_phase
Source§fn cmp(&self, other: &perl_phase) -> Ordering
fn cmp(&self, other: &perl_phase) -> 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 perl_phase
impl PartialEq for perl_phase
Source§fn eq(&self, other: &perl_phase) -> bool
fn eq(&self, other: &perl_phase) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for perl_phase
impl PartialOrd for perl_phase
impl Copy for perl_phase
impl Eq for perl_phase
impl StructuralPartialEq for perl_phase
Auto Trait Implementations§
impl Freeze for perl_phase
impl RefUnwindSafe for perl_phase
impl Send for perl_phase
impl Sync for perl_phase
impl Unpin for perl_phase
impl UnsafeUnpin for perl_phase
impl UnwindSafe for perl_phase
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