Enum PhpOperator
pub enum PhpOperator {
Show 13 variants
Assign,
Plus,
Minus,
Multiply,
Divide,
Modulo,
Equal,
Identical,
NotEqual,
NotIdentical,
Spaceship,
NullCoalesce,
Elvis,
}Expand description
PHP operator label metadata.
Variants§
Assign
Plus
Minus
Multiply
Divide
Modulo
Equal
Identical
NotEqual
NotIdentical
Spaceship
NullCoalesce
Elvis
Implementations§
§impl PhpOperator
impl PhpOperator
Trait Implementations§
§impl Clone for PhpOperator
impl Clone for PhpOperator
§fn clone(&self) -> PhpOperator
fn clone(&self) -> PhpOperator
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 more§impl Debug for PhpOperator
impl Debug for PhpOperator
§impl Display for PhpOperator
impl Display for PhpOperator
§impl Hash for PhpOperator
impl Hash for PhpOperator
§impl Ord for PhpOperator
impl Ord for PhpOperator
§impl PartialEq for PhpOperator
impl PartialEq for PhpOperator
§impl PartialOrd for PhpOperator
impl PartialOrd for PhpOperator
impl Copy for PhpOperator
impl Eq for PhpOperator
impl StructuralPartialEq for PhpOperator
Auto Trait Implementations§
impl Freeze for PhpOperator
impl RefUnwindSafe for PhpOperator
impl Send for PhpOperator
impl Sync for PhpOperator
impl Unpin for PhpOperator
impl UnsafeUnpin for PhpOperator
impl UnwindSafe for PhpOperator
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