Trait PythonizeTypes

Source
pub trait PythonizeTypes<'py> {
    type Map: PythonizeMappingType<'py>;
    type NamedMap: PythonizeNamedMappingType<'py>;
    type List: PythonizeListType;
}
Expand description

Custom types for serialization

Required Associated Types§

Source

type Map: PythonizeMappingType<'py>

Python map type (should be representable as python mapping)

Source

type NamedMap: PythonizeNamedMappingType<'py>

Python (struct-like) named map type (should be representable as python mapping)

Source

type List: PythonizeListType

Python sequence type (should be representable as python sequence)

Implementors§