pub struct PhpFunctionCall {
pub name: Box<PhpExpression>,
pub arguments: Vec<PhpExpression>,
}Expand description
PHP 函数调用
Fields§
§name: Box<PhpExpression>§arguments: Vec<PhpExpression>Trait Implementations§
Source§impl Clone for PhpFunctionCall
impl Clone for PhpFunctionCall
Source§fn clone(&self) -> PhpFunctionCall
fn clone(&self) -> PhpFunctionCall
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 PhpFunctionCall
impl Debug for PhpFunctionCall
Source§impl<'de> Deserialize<'de> for PhpFunctionCall
impl<'de> Deserialize<'de> for PhpFunctionCall
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 PhpFunctionCall
impl PartialEq for PhpFunctionCall
Source§impl Serialize for PhpFunctionCall
impl Serialize for PhpFunctionCall
impl StructuralPartialEq for PhpFunctionCall
Auto Trait Implementations§
impl Freeze for PhpFunctionCall
impl RefUnwindSafe for PhpFunctionCall
impl Send for PhpFunctionCall
impl Sync for PhpFunctionCall
impl Unpin for PhpFunctionCall
impl UnwindSafe for PhpFunctionCall
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