#[repr(C)]pub struct Py_buffer {
pub buf: *mut c_void,
pub obj: *mut PyObject,
pub len: Py_ssize_t,
pub itemsize: Py_ssize_t,
pub readonly: c_int,
pub ndim: c_int,
pub format: *mut c_char,
pub shape: *mut Py_ssize_t,
pub strides: *mut Py_ssize_t,
pub suboffsets: *mut Py_ssize_t,
pub internal: *mut c_void,
}
Fields
buf: *mut c_void
obj: *mut PyObject
Owned reference
len: Py_ssize_t
itemsize: Py_ssize_t
readonly: c_int
ndim: c_int
format: *mut c_char
shape: *mut Py_ssize_t
strides: *mut Py_ssize_t
suboffsets: *mut Py_ssize_t
internal: *mut c_void
Implementations
Trait Implementations
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more