pub type ExprUnaryOp = ExprUnaryOp<SourceRange>;

Aliased Type§

struct ExprUnaryOp {
    pub range: SourceRange,
    pub op: UnaryOp,
    pub operand: Box<Expr<SourceRange>>,
}

Fields§

§range: SourceRange§op: UnaryOp§operand: Box<Expr<SourceRange>>

Trait Implementations§