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