pub trait PythonizeTypes {
    type Map: PythonizeDictType;
    type List: PythonizeListType;
}
Expand description

Custom types for serialization

Required Associated Types§

source

type Map: PythonizeDictType

Python map type (should be representable as python mapping)

source

type List: PythonizeListType

Python sequence type (should be representable as python sequence)

Implementors§