pub struct ListLiteral {
pub elements: Vec<Expression>,
}Expand description
An ordered list of values
Fields§
§elements: Vec<Expression>Trait Implementations§
Source§impl Debug for ListLiteral
impl Debug for ListLiteral
Source§impl Display for ListLiteral
impl Display for ListLiteral
Source§impl From<ListLiteral> for Expression
impl From<ListLiteral> for Expression
Source§fn from(expr: ListLiteral) -> Expression
fn from(expr: ListLiteral) -> Expression
Converts to this type from the input type.
Source§impl PartialEq for ListLiteral
impl PartialEq for ListLiteral
impl Eq for ListLiteral
impl StructuralPartialEq for ListLiteral
Auto Trait Implementations§
impl Freeze for ListLiteral
impl RefUnwindSafe for ListLiteral
impl Send for ListLiteral
impl Sync for ListLiteral
impl Unpin for ListLiteral
impl UnwindSafe for ListLiteral
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