#[repr(C)]pub struct Py_buffer {
pub buf: *mut c_void,
pub obj: *mut PyObject,
pub len: isize,
pub itemsize: isize,
pub readonly: i32,
pub ndim: i32,
pub format: *mut i8,
pub shape: *mut isize,
pub strides: *mut isize,
pub suboffsets: *mut isize,
pub internal: *mut c_void,
}
Fields§
§buf: *mut c_void
§obj: *mut PyObject
Owned reference
len: isize
§itemsize: isize
§readonly: i32
§ndim: i32
§format: *mut i8
§shape: *mut isize
§strides: *mut isize
§suboffsets: *mut isize
§internal: *mut c_void
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Py_buffer
impl RefUnwindSafe for Py_buffer
impl !Send for Py_buffer
impl !Sync for Py_buffer
impl Unpin for Py_buffer
impl UnwindSafe for Py_buffer
Blanket Implementations§
Source§impl<T> AssertNotZeroSized for T
impl<T> AssertNotZeroSized for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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