Type Alias PyDictRef

Source
pub type PyDictRef = PyRef<PyDict>;

Aliased Type§

struct PyDictRef { /* private fields */ }

Trait Implementations§

Source§

impl<'a> IntoIterator for &'a PyDictRef

Source§

type Item = (PyObjectRef, PyObjectRef)

The type of the elements being iterated over.
Source§

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

Source§

type Item = (PyObjectRef, PyObjectRef)

The type of the elements being iterated over.
Source§

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