#[repr(C)]pub struct PyListObject {
pub ob_base: PyVarObject,
pub ob_item: *mut *mut PyObject,
pub allocated: Py_ssize_t,
}
Available on non-
Py_LIMITED_API
and neither PyPy
nor GraalPy
only.Fields§
§ob_base: PyVarObject
§ob_item: *mut *mut PyObject
§allocated: Py_ssize_t
Auto Trait Implementations§
impl Freeze for PyListObject
impl RefUnwindSafe for PyListObject
impl !Send for PyListObject
impl !Sync for PyListObject
impl Unpin for PyListObject
impl UnwindSafe for PyListObject
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