pub struct PyList(/* private fields */);
Expand description
Represents a Python list
.
Implementations§
source§impl PyList
impl PyList
sourcepub fn new(py: Python<'_>, elements: &[PyObject]) -> PyList
pub fn new(py: Python<'_>, elements: &[PyObject]) -> PyList
Construct a new list with the given elements.
sourcepub fn get_item(&self, py: Python<'_>, index: usize) -> PyObject
pub fn get_item(&self, py: Python<'_>, index: usize) -> PyObject
Gets the item at the specified index.
Panics if the index is out of range.
sourcepub fn set_item(&self, _py: Python<'_>, index: usize, item: PyObject)
pub fn set_item(&self, _py: Python<'_>, index: usize, item: PyObject)
Sets the item at the specified index.
Panics if the index is out of range.
sourcepub fn insert(&self, _py: Python<'_>, index: usize, item: PyObject)
pub fn insert(&self, _py: Python<'_>, index: usize, item: PyObject)
Inserts an item at the specified index.
Panics if the index is out of range.
pub fn iter<'a, 'p>(&'a self, py: Python<'p>) -> PyListIterator<'a, 'p>
Trait Implementations§
source§impl<'s> FromPyObject<'s> for &'s PyList
impl<'s> FromPyObject<'s> for &'s PyList
source§impl<'s> FromPyObject<'s> for PyList
impl<'s> FromPyObject<'s> for PyList
source§impl PythonObject for PyList
impl PythonObject for PyList
source§unsafe fn unchecked_downcast_from(obj: PyObject) -> Self
unsafe fn unchecked_downcast_from(obj: PyObject) -> Self
Unchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.
source§unsafe fn unchecked_downcast_borrow_from<'a>(obj: &'a PyObject) -> &'a Self
unsafe fn unchecked_downcast_borrow_from<'a>(obj: &'a PyObject) -> &'a Self
Unchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.
source§fn into_object(self) -> PyObject
fn into_object(self) -> PyObject
Casts the Python object to PyObject.
source§impl PythonObjectWithCheckedDowncast for PyList
impl PythonObjectWithCheckedDowncast for PyList
source§fn downcast_from<'p>(
py: Python<'p>,
obj: PyObject
) -> Result<PyList, PythonObjectDowncastError<'p>>
fn downcast_from<'p>( py: Python<'p>, obj: PyObject ) -> Result<PyList, PythonObjectDowncastError<'p>>
Cast from PyObject to a concrete Python object type.
source§fn downcast_borrow_from<'a, 'p>(
py: Python<'p>,
obj: &'a PyObject
) -> Result<&'a PyList, PythonObjectDowncastError<'p>>
fn downcast_borrow_from<'a, 'p>( py: Python<'p>, obj: &'a PyObject ) -> Result<&'a PyList, PythonObjectDowncastError<'p>>
Cast from PyObject to a concrete Python object type.
source§impl PythonObjectWithTypeObject for PyList
impl PythonObjectWithTypeObject for PyList
source§fn type_object(py: Python<'_>) -> PyType
fn type_object(py: Python<'_>) -> PyType
Retrieves the type object for this Python object type.
source§impl ToPyObject for PyList
impl ToPyObject for PyList
Identity conversion: allows using existing PyObject
instances where
T: ToPyObject
is expected.
type ObjectType = PyList
source§fn to_py_object(&self, py: Python<'_>) -> PyList
fn to_py_object(&self, py: Python<'_>) -> PyList
Converts self into a Python object.
Auto Trait Implementations§
impl Freeze for PyList
impl RefUnwindSafe for PyList
impl Send for PyList
impl Sync for PyList
impl Unpin for PyList
impl UnwindSafe for PyList
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