Struct python_oxidized_importer::OxidizedZipFinder [−][src]
pub struct OxidizedZipFinder { /* fields omitted */ }Expand description
A meta path finder that reads from zip archives.
Known incompatibilities with zipimporter:
- ResourceReader interface not implemented.
- ResourceLoader interface not implemented.
- Bytecode isn’t validated.
Implementations
Construct a new instance from zip data.
Construct a new instance from a PyObject conforming to the buffer protocol.
Trait Implementations
type Dict = PyClassDummySlot
type Dict = PyClassDummySlot
Specify this class has #[pyclass(dict)] or not.
type WeakRef = PyClassDummySlot
type WeakRef = PyClassDummySlot
Specify this class has #[pyclass(weakref)] or not.
type BaseNativeType = PyAny
type BaseNativeType = PyAny
The closest native ancestor. This is PyAny by default, and when you declare
#[pyclass(extends=PyDict)], it’s PyDict. Read more
#[pyclass(subclass)]
#[pyclass(extends=…)]
type ThreadChecker = ThreadCheckerStub<OxidizedZipFinder>
type ThreadChecker = ThreadCheckerStub<OxidizedZipFinder>
This handles following two situations: Read more
type AsRefTarget = PyCell<Self>
type AsRefTarget = PyCell<Self>
Utility type to make Py::as_ref work.
PyTypeObject instance for this type.
Checks if object is an instance of this type or a subclass of this type.
Checks if object is an instance of this type.