pub struct ListLiteral<'input> {
pub span: Span,
pub start_bracket: SimpleToken<'input>,
pub values: Vec<ListLiteralValue<'input>>,
pub end_bracket: SimpleToken<'input>,
}Fields§
§span: Span§start_bracket: SimpleToken<'input>§values: Vec<ListLiteralValue<'input>>§end_bracket: SimpleToken<'input>Trait Implementations§
Source§impl<'input> Clone for ListLiteral<'input>
impl<'input> Clone for ListLiteral<'input>
Source§fn clone(&self) -> ListLiteral<'input>
fn clone(&self) -> ListLiteral<'input>
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 moreAuto Trait Implementations§
impl<'input> Freeze for ListLiteral<'input>
impl<'input> RefUnwindSafe for ListLiteral<'input>
impl<'input> Send for ListLiteral<'input>
impl<'input> Sync for ListLiteral<'input>
impl<'input> Unpin for ListLiteral<'input>
impl<'input> UnwindSafe for ListLiteral<'input>
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