Module pybacked
Available on crate features
dep_pyo3
and std
only.Expand description
Contains types for working with Python objects that own the underlying data.
Structs§
- PyBacked
Bytes - A wrapper around
[u8]
where the storage is either owned by a Pythonbytes
object, or a RustBox<[u8]>
. - PyBacked
Str - A wrapper around
str
where the storage is owned by a Pythonbytes
orstr
object.