Skip to main content

PyUntypedBufferView

Struct PyUntypedBufferView 

Source
pub struct PyUntypedBufferView<Flags: PyBufferFlagsType = PyBufferFlags> { /* private fields */ }
Expand description

Stack-allocated untyped buffer view.

Unlike PyUntypedBuffer which heap-allocates, this places the Py_buffer on the stack. The scoped closure API ensures the buffer cannot be moved.

Use with_flags() with a PyBufferFlags value to acquire a view. The available accessors depend on the flags used.

Implementations§

Source§

impl<Flags: PyBufferFlagsType> PyUntypedBufferView<Flags>

Source

pub fn buf_ptr(&self) -> *mut c_void

Gets the pointer to the start of the buffer memory.

Source

pub fn obj<'py>(&self, py: Python<'py>) -> Option<&Bound<'py, PyAny>>

Returns the Python object that owns the buffer data.

Source

pub fn readonly(&self) -> bool

Gets whether the underlying buffer is read-only.

Source

pub fn item_size(&self) -> usize

Gets the size of a single element, in bytes.

Source

pub fn item_count(&self) -> usize

Gets the total number of items.

Source

pub fn len_bytes(&self) -> usize

item_size() * item_count(). For contiguous arrays, this is the length of the underlying memory block.

Source

pub fn dimensions(&self) -> usize

Gets the number of dimensions.

May be 0 to indicate a single scalar value.

Source

pub fn suboffsets(&self) -> Option<&[isize]>

Returns the suboffsets array.

May return None even with PyBUF_INDIRECT if the exporter sets suboffsets to NULL.

Source

pub fn is_c_contiguous(&self) -> bool

Gets whether the buffer is contiguous in C-style order.

Source

pub fn is_fortran_contiguous(&self) -> bool

Gets whether the buffer is contiguous in Fortran-style order.

Source§

impl<const SHAPE: bool, const STRIDE: bool, const WRITABLE: bool, const CONTIGUITY: u8> PyUntypedBufferView<PyBufferFlags<true, SHAPE, STRIDE, WRITABLE, CONTIGUITY>>

Source

pub fn format(&self) -> &CStr

A struct module style string describing the contents of a single item.

Source

pub fn as_typed<T: Element>( &self, ) -> PyResult<&PyBufferView<T, PyBufferFlags<true, SHAPE, STRIDE, WRITABLE, CONTIGUITY>>>

Attempt to interpret this untyped view as containing elements of type T.

Source§

impl<const FORMAT: bool, const STRIDE: bool, const WRITABLE: bool, const CONTIGUITY: u8> PyUntypedBufferView<PyBufferFlags<FORMAT, true, STRIDE, WRITABLE, CONTIGUITY>>

Source

pub fn shape(&self) -> &[usize]

Returns the shape array. shape[i] is the length of dimension i.

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.

Source§

impl<const FORMAT: bool, const SHAPE: bool, const WRITABLE: bool, const CONTIGUITY: u8> PyUntypedBufferView<PyBufferFlags<FORMAT, SHAPE, true, WRITABLE, CONTIGUITY>>

Source

pub fn strides(&self) -> &[isize]

Returns the strides array.

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.

Source§

impl<const WRITABLE: bool> PyUntypedBufferView<PyBufferFlags<false, false, false, WRITABLE, CONTIGUITY_UNDEFINED>>

Source

pub fn format(&self) -> &CStr

Returns the format string for a simple byte buffer, which is always "B".

Source§

impl PyUntypedBufferView

Source

pub fn with_flags<const FORMAT: bool, const SHAPE: bool, const STRIDE: bool, const WRITABLE: bool, const CONTIGUITY: u8, R>( obj: &Bound<'_, PyAny>, flags: PyBufferFlags<FORMAT, SHAPE, STRIDE, WRITABLE, CONTIGUITY>, f: impl FnOnce(&PyUntypedBufferView<PyBufferFlags<FORMAT, SHAPE, STRIDE, WRITABLE, CONTIGUITY>>) -> R, ) -> PyResult<R>

Acquire a buffer view with the given flags, pass it to f, then release the buffer.

Use PyBufferFlags::simple() or one of the compound-request constructors such as PyBufferFlags::full_ro() to acquire a view.

Trait Implementations§

Source§

impl<Flags: PyBufferFlagsType> Debug for PyUntypedBufferView<Flags>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Flags: PyBufferFlagsType> Drop for PyUntypedBufferView<Flags>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<Flags> Freeze for PyUntypedBufferView<Flags>

§

impl<Flags> RefUnwindSafe for PyUntypedBufferView<Flags>
where Flags: RefUnwindSafe,

§

impl<Flags = PyBufferFlags> !Send for PyUntypedBufferView<Flags>

§

impl<Flags = PyBufferFlags> !Sync for PyUntypedBufferView<Flags>

§

impl<Flags> Unpin for PyUntypedBufferView<Flags>
where Flags: Unpin,

§

impl<Flags> UnsafeUnpin for PyUntypedBufferView<Flags>

§

impl<Flags> UnwindSafe for PyUntypedBufferView<Flags>
where Flags: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.