pub struct ExprList {
pub items: Vec<Expr>,
}Expand description
A list of expressions.
Represents an ordered collection of expressions that evaluate to a list of values.
§Examples
list(a, b, c) // a list containing expressions a, b, and cFields§
§items: Vec<Expr>The expressions in the list.
Implementations§
Trait Implementations§
impl StructuralPartialEq for ExprList
Auto Trait Implementations§
impl Freeze for ExprList
impl RefUnwindSafe for ExprList
impl Send for ExprList
impl Sync for ExprList
impl Unpin for ExprList
impl UnwindSafe for ExprList
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