pub struct PhpPropertyAccess {
pub object: Box<PhpExpression>,
pub property: String,
}Expand description
PHP 属性访问
Fields§
§object: Box<PhpExpression>§property: StringTrait Implementations§
Source§impl Clone for PhpPropertyAccess
impl Clone for PhpPropertyAccess
Source§fn clone(&self) -> PhpPropertyAccess
fn clone(&self) -> PhpPropertyAccess
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 PhpPropertyAccess
impl Debug for PhpPropertyAccess
Source§impl<'de> Deserialize<'de> for PhpPropertyAccess
impl<'de> Deserialize<'de> for PhpPropertyAccess
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 PhpPropertyAccess
impl PartialEq for PhpPropertyAccess
Source§impl Serialize for PhpPropertyAccess
impl Serialize for PhpPropertyAccess
impl StructuralPartialEq for PhpPropertyAccess
Auto Trait Implementations§
impl Freeze for PhpPropertyAccess
impl RefUnwindSafe for PhpPropertyAccess
impl Send for PhpPropertyAccess
impl Sync for PhpPropertyAccess
impl Unpin for PhpPropertyAccess
impl UnwindSafe for PhpPropertyAccess
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