Type Alias rustpython_vm::builtins::PyDictRef

source ·
pub type PyDictRef = PyRef<PyDict>;

Trait Implementations§

source§

impl<'a> IntoIterator for &'a PyDictRef

§

type Item = (PyObjectRef, PyObjectRef)

The type of the elements being iterated over.
§

type IntoIter = DictIter<'a>

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more
source§

impl IntoIterator for PyDictRef

§

type Item = (PyObjectRef, PyObjectRef)

The type of the elements being iterated over.
§

type IntoIter = DictIntoIter

Which kind of iterator are we turning this into?
source§

fn into_iter(self) -> Self::IntoIter

Creates an iterator from a value. Read more