pub enum PropertyDeclarationValue<'tree> {
ArrowExpressionClause(Box<ArrowExpressionClause<'tree>>),
Expression(Box<Expression<'tree>>),
}Variants§
ArrowExpressionClause(Box<ArrowExpressionClause<'tree>>)
Expression(Box<Expression<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for PropertyDeclarationValue<'tree>
impl<'tree> Clone for PropertyDeclarationValue<'tree>
Source§fn clone(&self) -> PropertyDeclarationValue<'tree>
fn clone(&self) -> PropertyDeclarationValue<'tree>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'tree> Debug for PropertyDeclarationValue<'tree>
impl<'tree> Debug for PropertyDeclarationValue<'tree>
impl<'tree> Eq for PropertyDeclarationValue<'tree>
Source§impl<'tree> FromNode<'tree> for PropertyDeclarationValue<'tree>
impl<'tree> FromNode<'tree> for PropertyDeclarationValue<'tree>
Source§impl<'tree> PartialEq for PropertyDeclarationValue<'tree>
impl<'tree> PartialEq for PropertyDeclarationValue<'tree>
Source§impl Spanned for PropertyDeclarationValue<'_>
impl Spanned for PropertyDeclarationValue<'_>
impl<'tree> StructuralPartialEq for PropertyDeclarationValue<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for PropertyDeclarationValue<'tree>
impl<'tree> RefUnwindSafe for PropertyDeclarationValue<'tree>
impl<'tree> Send for PropertyDeclarationValue<'tree>
impl<'tree> Sync for PropertyDeclarationValue<'tree>
impl<'tree> Unpin for PropertyDeclarationValue<'tree>
impl<'tree> UnsafeUnpin for PropertyDeclarationValue<'tree>
impl<'tree> UnwindSafe for PropertyDeclarationValue<'tree>
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