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