pub struct IsExpression<'tree> {
pub span: Span,
pub left: Expression<'tree>,
pub operator: IsExpressionOperator,
pub right: Type<'tree>,
}Fields§
§span: Span§left: Expression<'tree>§operator: IsExpressionOperator§right: Type<'tree>Trait Implementations§
Source§impl<'tree> Clone for IsExpression<'tree>
impl<'tree> Clone for IsExpression<'tree>
Source§fn clone(&self) -> IsExpression<'tree>
fn clone(&self) -> IsExpression<'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 IsExpression<'tree>
impl<'tree> Debug for IsExpression<'tree>
impl<'tree> Eq for IsExpression<'tree>
Source§impl<'tree> FromNode<'tree> for IsExpression<'tree>
impl<'tree> FromNode<'tree> for IsExpression<'tree>
Source§impl<'tree> PartialEq for IsExpression<'tree>
impl<'tree> PartialEq for IsExpression<'tree>
Source§impl Spanned for IsExpression<'_>
impl Spanned for IsExpression<'_>
impl<'tree> StructuralPartialEq for IsExpression<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for IsExpression<'tree>
impl<'tree> RefUnwindSafe for IsExpression<'tree>
impl<'tree> Send for IsExpression<'tree>
impl<'tree> Sync for IsExpression<'tree>
impl<'tree> Unpin for IsExpression<'tree>
impl<'tree> UnsafeUnpin for IsExpression<'tree>
impl<'tree> UnwindSafe for IsExpression<'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