Expand description
PyBuffer implementation
Structs§
- PyBuffer
- A typed form of
PyUntypedBuffer. - PyBuffer
Flags - Type-safe buffer request flags. The const parameters encode which fields the exporter is required to fill.
- PyBuffer
View - A typed form of
PyUntypedBufferView. Not constructible directly — usePyBufferView::with()orPyBufferView::with_flags(). - PyUntyped
Buffer - Allows access to the underlying buffer used by a python object such as
bytes,bytearrayorarray.array. - PyUntyped
Buffer View - Stack-allocated untyped buffer view.
- Read
Only Cell - Like std::cell::Cell, but only provides read-only access to the data.
Enums§
- Element
Type - Represents the type of a Python buffer element.
Traits§
- Element
- Trait implemented for possible element types of
PyBuffer. - PyBuffer
Flags Type - Trait implemented by all
PyBufferFlagsinstantiations.