Re-exports§
pub use arguments::*;pub use attribute::*;pub use assign::*;pub use await_kw::*;pub use bin_ops::*;pub use bool_ops::*;pub use call::*;pub use class_def::*;pub use compare::*;pub use constant::*;pub use expression::*;pub use function_def::*;pub use import::*;pub use keyword::*;pub use list::*;pub use parameters::*;pub use name::*;pub use named_expression::*;pub use unary_op::*;pub use module::*;pub use statement::*;
Modules§
- arguments
- The module defines Python-syntax arguments and maps them into Rust-syntax versions.
- assign
- attribute
- await_
kw - bin_ops
- bool_
ops - call
- class_
def - A lot of languages, Python included, have a concept of a class, which combines the definition of a data type with an interface. In dynamic languages like Python, the class itself is a memory object, that can be permutated at runtime, however, this is probably usually a bad idea. Classes can contain:
- compare
- constant
- expression
- function_
def - import
- keyword
- list
- module
- name
- named_
expression - parameters
- statement
- unary_
op