pub trait AstModuleFields: Sized {
    // Required methods
    fn codemap(&self) -> &CodeMap;
    fn statement(&self) -> &AstStmt;
    fn dialect(&self) -> &Dialect;
    fn into_parts(self) -> (CodeMap, AstStmt, Dialect, bool);
}
Expand description

This trait is not exported as public API of starlark.

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§