Module datamodel

Source
Expand description

Module representing the Python Data Model in Rust form. See: here.

Re-exports§

pub use namespace::*;
pub use class::*;

Modules§

class
traits for Python classes Objects. Classes are Object factories, meaning they create instances of objects.
namespace
Rust traits used to abstract Python data objects that are namespaces and contain symbols. This includes Modules, Functions, Classes, and other objects.
number

Statics§

Ellipsis
The Python NotImplemented object.
None
The Python None object.
NotImplemented
The Python NotImplemented object.

Traits§

Object
The Python Object. Anything that implements this trait is a Python Object.