#[repr(u32)]pub enum Perl_custom_infix_precedence {
INFIX_PREC_LOW = 10,
INFIX_PREC_LOGICAL_OR_LOW = 30,
INFIX_PREC_LOGICAL_AND_LOW = 40,
INFIX_PREC_ASSIGN = 50,
INFIX_PREC_LOGICAL_OR = 70,
INFIX_PREC_LOGICAL_AND = 80,
INFIX_PREC_REL = 90,
INFIX_PREC_ADD = 110,
INFIX_PREC_MUL = 130,
INFIX_PREC_POW = 150,
INFIX_PREC_HIGH = 170,
}Variants§
INFIX_PREC_LOW = 10
INFIX_PREC_LOGICAL_OR_LOW = 30
INFIX_PREC_LOGICAL_AND_LOW = 40
INFIX_PREC_ASSIGN = 50
INFIX_PREC_LOGICAL_OR = 70
INFIX_PREC_LOGICAL_AND = 80
INFIX_PREC_REL = 90
INFIX_PREC_ADD = 110
INFIX_PREC_MUL = 130
INFIX_PREC_POW = 150
INFIX_PREC_HIGH = 170
Trait Implementations§
Source§impl Clone for Perl_custom_infix_precedence
impl Clone for Perl_custom_infix_precedence
Source§fn clone(&self) -> Perl_custom_infix_precedence
fn clone(&self) -> Perl_custom_infix_precedence
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_custom_infix_precedence
impl Debug for Perl_custom_infix_precedence
Source§impl Hash for Perl_custom_infix_precedence
impl Hash for Perl_custom_infix_precedence
Source§impl Ord for Perl_custom_infix_precedence
impl Ord for Perl_custom_infix_precedence
Source§fn cmp(&self, other: &Perl_custom_infix_precedence) -> Ordering
fn cmp(&self, other: &Perl_custom_infix_precedence) -> 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_custom_infix_precedence
impl PartialEq for Perl_custom_infix_precedence
Source§fn eq(&self, other: &Perl_custom_infix_precedence) -> bool
fn eq(&self, other: &Perl_custom_infix_precedence) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for Perl_custom_infix_precedence
impl PartialOrd for Perl_custom_infix_precedence
impl Copy for Perl_custom_infix_precedence
impl Eq for Perl_custom_infix_precedence
impl StructuralPartialEq for Perl_custom_infix_precedence
Auto Trait Implementations§
impl Freeze for Perl_custom_infix_precedence
impl RefUnwindSafe for Perl_custom_infix_precedence
impl Send for Perl_custom_infix_precedence
impl Sync for Perl_custom_infix_precedence
impl Unpin for Perl_custom_infix_precedence
impl UnsafeUnpin for Perl_custom_infix_precedence
impl UnwindSafe for Perl_custom_infix_precedence
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