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