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