pub struct PhpBinaryOp {
pub left: Box<PhpExpression>,
pub operator: PhpBinaryOperator,
pub right: Box<PhpExpression>,
}Expand description
PHP 二元操作
Fields§
§left: Box<PhpExpression>§operator: PhpBinaryOperator§right: Box<PhpExpression>Trait Implementations§
Source§impl Clone for PhpBinaryOp
impl Clone for PhpBinaryOp
Source§fn clone(&self) -> PhpBinaryOp
fn clone(&self) -> PhpBinaryOp
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 PhpBinaryOp
impl Debug for PhpBinaryOp
Source§impl<'de> Deserialize<'de> for PhpBinaryOp
impl<'de> Deserialize<'de> for PhpBinaryOp
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PhpBinaryOp
impl PartialEq for PhpBinaryOp
Source§impl Serialize for PhpBinaryOp
impl Serialize for PhpBinaryOp
impl StructuralPartialEq for PhpBinaryOp
Auto Trait Implementations§
impl Freeze for PhpBinaryOp
impl RefUnwindSafe for PhpBinaryOp
impl Send for PhpBinaryOp
impl Sync for PhpBinaryOp
impl Unpin for PhpBinaryOp
impl UnwindSafe for PhpBinaryOp
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