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