Type Alias rustpython_ast::located::StmtAnnAssign

source ·
pub type StmtAnnAssign = StmtAnnAssign<SourceRange>;

Aliased Type§

struct StmtAnnAssign {
    pub range: SourceRange,
    pub target: Box<Expr<SourceRange>>,
    pub annotation: Box<Expr<SourceRange>>,
    pub value: Option<Box<Expr<SourceRange>>>,
    pub simple: bool,
}

Fields§

§range: SourceRange§target: Box<Expr<SourceRange>>§annotation: Box<Expr<SourceRange>>§value: Option<Box<Expr<SourceRange>>>§simple: bool

Trait Implementations§