pub trait PythonizeTypes<'py> {
type Map: PythonizeMappingType<'py>;
type NamedMap: PythonizeNamedMappingType<'py>;
type List: PythonizeListType;
}
Expand description
Custom types for serialization
Required Associated Types§
Sourcetype Map: PythonizeMappingType<'py>
type Map: PythonizeMappingType<'py>
Python map type (should be representable as python mapping)
Sourcetype NamedMap: PythonizeNamedMappingType<'py>
type NamedMap: PythonizeNamedMappingType<'py>
Python (struct-like) named map type (should be representable as python mapping)
Sourcetype List: PythonizeListType
type List: PythonizeListType
Python sequence type (should be representable as python sequence)