pub struct PropertyAccessExpr {
pub object: Box<Expr>,
pub property: Box<Expr>,
}Fields§
§object: Box<Expr>§property: Box<Expr>Trait Implementations§
Source§impl Clone for PropertyAccessExpr
impl Clone for PropertyAccessExpr
Source§fn clone(&self) -> PropertyAccessExpr
fn clone(&self) -> PropertyAccessExpr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PropertyAccessExpr
impl Debug for PropertyAccessExpr
Auto Trait Implementations§
impl Freeze for PropertyAccessExpr
impl RefUnwindSafe for PropertyAccessExpr
impl Send for PropertyAccessExpr
impl Sync for PropertyAccessExpr
impl Unpin for PropertyAccessExpr
impl UnsafeUnpin for PropertyAccessExpr
impl UnwindSafe for PropertyAccessExpr
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