Struct pyo3::buffer::PyBuffer

source ·
#[repr(transparent)]
pub struct PyBuffer<T>(_, _);
Available on non-Py_LIMITED_API or Py_3_11 only.
Expand description

Allows access to the underlying buffer used by a python object such as bytes, bytearray or array.array.

Implementations§

Get the underlying buffer from the specified python object.

Gets the pointer to the start of the buffer memory.

Warning: the buffer memory might be mutated by other Python functions, and thus may only be accessed while the GIL is held.

Gets a pointer to the specified item.

If indices.len() < self.dimensions(), returns the start address of the sub-array at the specified dimension.

Gets whether the underlying buffer is read-only.

Gets the size of a single element, in bytes. Important exception: when requesting an unformatted buffer, item_size still has the value

Gets the total number of items.

item_size() * item_count(). For contiguous arrays, this is the length of the underlying memory block. For non-contiguous arrays, it is the length that the logical structure would have if it were copied to a contiguous representation.

Gets the number of dimensions.

May be 0 to indicate a single scalar value.

Returns an array of length dimensions. shape()[i] is the length of the array in dimension number i.

May return None for single-dimensional arrays or scalar values (dimensions() <= 1); You can call item_count() to get the length of the single dimension.

Despite Python using an array of signed integers, the values are guaranteed to be non-negative. However, dimensions of length 0 are possible and might need special attention.

Returns an array that holds, for each dimension, the number of bytes to skip to get to the next element in the dimension.

Stride values can be any integer. For regular arrays, strides are usually positive, but a consumer MUST be able to handle the case strides[n] <= 0.

An array of length ndim. If suboffsets[n] >= 0, the values stored along the nth dimension are pointers and the suboffset value dictates how many bytes to add to each pointer after de-referencing. A suboffset value that is negative indicates that no de-referencing should occur (striding in a contiguous memory block).

If all suboffsets are negative (i.e. no de-referencing is needed), then this field must be NULL (the default value).

A NUL terminated string in struct module style syntax describing the contents of a single item.

Gets whether the buffer is contiguous in C-style order (last index varies fastest when visiting items in order of memory address).

Gets whether the buffer is contiguous in Fortran-style order (first index varies fastest when visiting items in order of memory address).

Gets the buffer memory as a slice.

This function succeeds if:

  • the buffer format is compatible with T
  • alignment and size of buffer elements is matching the expectations for type T
  • the buffer is C-style contiguous

The returned slice uses type Cell<T> because it’s theoretically possible for any call into the Python runtime to modify the values in the slice.

Gets the buffer memory as a slice.

This function succeeds if:

  • the buffer is not read-only
  • the buffer format is compatible with T
  • alignment and size of buffer elements is matching the expectations for type T
  • the buffer is C-style contiguous

The returned slice uses type Cell<T> because it’s theoretically possible for any call into the Python runtime to modify the values in the slice.

Gets the buffer memory as a slice.

This function succeeds if:

  • the buffer format is compatible with T
  • alignment and size of buffer elements is matching the expectations for type T
  • the buffer is Fortran-style contiguous

The returned slice uses type Cell<T> because it’s theoretically possible for any call into the Python runtime to modify the values in the slice.

Gets the buffer memory as a slice.

This function succeeds if:

  • the buffer is not read-only
  • the buffer format is compatible with T
  • alignment and size of buffer elements is matching the expectations for type T
  • the buffer is Fortran-style contiguous

The returned slice uses type Cell<T> because it’s theoretically possible for any call into the Python runtime to modify the values in the slice.

Copies the buffer elements to the specified slice. If the buffer is multi-dimensional, the elements are written in C-style order.

  • Fails if the slice does not have the correct length (buf.item_count()).
  • Fails if the buffer format is not compatible with type T.

To check whether the buffer format is compatible before calling this method, you can use <T as buffer::Element>::is_compatible_format(buf.format()). Alternatively, match buffer::ElementType::from_format(buf.format()).

Copies the buffer elements to the specified slice. If the buffer is multi-dimensional, the elements are written in Fortran-style order.

  • Fails if the slice does not have the correct length (buf.item_count()).
  • Fails if the buffer format is not compatible with type T.

To check whether the buffer format is compatible before calling this method, you can use <T as buffer::Element>::is_compatible_format(buf.format()). Alternatively, match buffer::ElementType::from_format(buf.format()).

Copies the buffer elements to a newly allocated vector. If the buffer is multi-dimensional, the elements are written in C-style order.

Fails if the buffer format is not compatible with type T.

Copies the buffer elements to a newly allocated vector. If the buffer is multi-dimensional, the elements are written in Fortran-style order.

Fails if the buffer format is not compatible with type T.

Copies the specified slice into the buffer. If the buffer is multi-dimensional, the elements in the slice are expected to be in C-style order.

  • Fails if the buffer is read-only.
  • Fails if the slice does not have the correct length (buf.item_count()).
  • Fails if the buffer format is not compatible with type T.

To check whether the buffer format is compatible before calling this method, use <T as buffer::Element>::is_compatible_format(buf.format()). Alternatively, match buffer::ElementType::from_format(buf.format()).

Copies the specified slice into the buffer. If the buffer is multi-dimensional, the elements in the slice are expected to be in Fortran-style order.

  • Fails if the buffer is read-only.
  • Fails if the slice does not have the correct length (buf.item_count()).
  • Fails if the buffer format is not compatible with type T.

To check whether the buffer format is compatible before calling this method, use <T as buffer::Element>::is_compatible_format(buf.format()). Alternatively, match buffer::ElementType::from_format(buf.format()).

Release the buffer object, freeing the reference to the Python object which owns the buffer.

Trait Implementations§

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more
Extracts Self from the source PyObject.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.