pub enum ExpressionListElement {
StringLiteral(StringLiteral),
Expression(Expression),
}Variants§
StringLiteral(StringLiteral)
Expression(Expression)
Trait Implementations§
Source§impl Clone for ExpressionListElement
impl Clone for ExpressionListElement
Source§fn clone(&self) -> ExpressionListElement
fn clone(&self) -> ExpressionListElement
Returns a copy 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 ExpressionListElement
impl Debug for ExpressionListElement
Source§impl Display for ExpressionListElement
impl Display for ExpressionListElement
Source§impl PartialEq for ExpressionListElement
impl PartialEq for ExpressionListElement
impl StructuralPartialEq for ExpressionListElement
Auto Trait Implementations§
impl Freeze for ExpressionListElement
impl RefUnwindSafe for ExpressionListElement
impl Send for ExpressionListElement
impl Sync for ExpressionListElement
impl Unpin for ExpressionListElement
impl UnwindSafe for ExpressionListElement
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