[][src]Module rustypy::pytypes

Types for interfacing with Python.

Modules

pybool

Analog to a Python boolean type.

pydict

An analog of a Python dict which contains pairs of (key, values) each of a single type, will accept an undefined number of one (and just one) of any other supported type (including other PyDict) as value and a corresponding key of a single supported hashable type (check PyDictK to see which ones are supported).

pylist

An analog of a Python list which contains elements of a single type, will accept an undefined number of one (and just one) of any other supported type (including other PyLists).

pystring

An analog of a Python String.

pytuple

An analog of a Python tuple, will accept an undefined number of any other supported types.

Enums

PyArg

Enum type used to construct PyTuple and PyList types. All the kinds supported in Python are included here.