pub struct VecExpr {
pub exprs: Vec<Expr>,
}Expand description
Represents a collection of expressions as a vector. Used to handle lists of expressions, such as arrays or argument lists.
Fields§
§exprs: Vec<Expr>The vector containing the expressions.
Trait Implementations§
impl StructuralPartialEq for VecExpr
Auto Trait Implementations§
impl Freeze for VecExpr
impl RefUnwindSafe for VecExpr
impl Send for VecExpr
impl Sync for VecExpr
impl Unpin for VecExpr
impl UnwindSafe for VecExpr
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