pub struct PhpAssignment {
pub left: Box<PhpExpression>,
pub operator: PhpAssignmentOp,
pub right: Box<PhpExpression>,
}Expand description
PHP 赋值
Fields§
§left: Box<PhpExpression>§operator: PhpAssignmentOp§right: Box<PhpExpression>Trait Implementations§
Source§impl Clone for PhpAssignment
impl Clone for PhpAssignment
Source§fn clone(&self) -> PhpAssignment
fn clone(&self) -> PhpAssignment
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 PhpAssignment
impl Debug for PhpAssignment
Source§impl<'de> Deserialize<'de> for PhpAssignment
impl<'de> Deserialize<'de> for PhpAssignment
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 PhpAssignment
impl PartialEq for PhpAssignment
Source§impl Serialize for PhpAssignment
impl Serialize for PhpAssignment
impl StructuralPartialEq for PhpAssignment
Auto Trait Implementations§
impl Freeze for PhpAssignment
impl RefUnwindSafe for PhpAssignment
impl Send for PhpAssignment
impl Sync for PhpAssignment
impl Unpin for PhpAssignment
impl UnwindSafe for PhpAssignment
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