pub struct ConditionalAccessExpression<'tree> {
pub span: Span,
pub condition: Expression<'tree>,
pub children: ConditionalAccessExpressionChildren<'tree>,
}Fields§
§span: Span§condition: Expression<'tree>§children: ConditionalAccessExpressionChildren<'tree>Trait Implementations§
Source§impl<'tree> Clone for ConditionalAccessExpression<'tree>
impl<'tree> Clone for ConditionalAccessExpression<'tree>
Source§fn clone(&self) -> ConditionalAccessExpression<'tree>
fn clone(&self) -> ConditionalAccessExpression<'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 ConditionalAccessExpression<'tree>
impl<'tree> Debug for ConditionalAccessExpression<'tree>
impl<'tree> Eq for ConditionalAccessExpression<'tree>
Source§impl<'tree> FromNode<'tree> for ConditionalAccessExpression<'tree>
impl<'tree> FromNode<'tree> for ConditionalAccessExpression<'tree>
Source§impl<'tree> PartialEq for ConditionalAccessExpression<'tree>
impl<'tree> PartialEq for ConditionalAccessExpression<'tree>
Source§fn eq(&self, other: &ConditionalAccessExpression<'tree>) -> bool
fn eq(&self, other: &ConditionalAccessExpression<'tree>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Spanned for ConditionalAccessExpression<'_>
impl Spanned for ConditionalAccessExpression<'_>
impl<'tree> StructuralPartialEq for ConditionalAccessExpression<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ConditionalAccessExpression<'tree>
impl<'tree> RefUnwindSafe for ConditionalAccessExpression<'tree>
impl<'tree> Send for ConditionalAccessExpression<'tree>
impl<'tree> Sync for ConditionalAccessExpression<'tree>
impl<'tree> Unpin for ConditionalAccessExpression<'tree>
impl<'tree> UnsafeUnpin for ConditionalAccessExpression<'tree>
impl<'tree> UnwindSafe for ConditionalAccessExpression<'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