pub struct ArrayIndexExpression {
pub array: Box<Expression>,
pub index: Box<Expression>,
pub span: Span,
}
Fields§
§array: Box<Expression>
§index: Box<Expression>
§span: Span
Trait Implementations§
Source§impl AsgExpression for ArrayIndexExpression
impl AsgExpression for ArrayIndexExpression
Source§impl Clone for ArrayIndexExpression
impl Clone for ArrayIndexExpression
Source§fn clone(&self) -> ArrayIndexExpression
fn clone(&self) -> ArrayIndexExpression
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 ArrayIndexExpression
impl Debug for ArrayIndexExpression
Source§impl PartialEq for ArrayIndexExpression
impl PartialEq for ArrayIndexExpression
impl StructuralPartialEq for ArrayIndexExpression
Auto Trait Implementations§
impl Freeze for ArrayIndexExpression
impl !RefUnwindSafe for ArrayIndexExpression
impl !Send for ArrayIndexExpression
impl !Sync for ArrayIndexExpression
impl Unpin for ArrayIndexExpression
impl !UnwindSafe for ArrayIndexExpression
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