#[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 PyObjectOwned reference
len: isize§itemsize: isize§readonly: i32§ndim: i32§format: *mut i8§shape: *mut isize§strides: *mut isize§suboffsets: *mut isize§internal: *mut c_voidImplementations§
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> 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