pub type StmtTypeAlias = StmtTypeAlias<SourceRange>;

Aliased Type§

struct StmtTypeAlias {
    pub range: SourceRange,
    pub name: Box<Expr<SourceRange>>,
    pub type_params: Vec<TypeParam<SourceRange>>,
    pub value: Box<Expr<SourceRange>>,
}

Fields§

§range: SourceRange§name: Box<Expr<SourceRange>>§type_params: Vec<TypeParam<SourceRange>>§value: Box<Expr<SourceRange>>

Trait Implementations§