trait PyDictItem<'py> {
type K: IntoPyObject<'py>;
type V: IntoPyObject<'py>;
// Required method
fn unpack(self) -> (Self::K, Self::V);
}Expand description
Represents a tuple which can be used as a PyDict item.
trait PyDictItem<'py> {
type K: IntoPyObject<'py>;
type V: IntoPyObject<'py>;
// Required method
fn unpack(self) -> (Self::K, Self::V);
}Represents a tuple which can be used as a PyDict item.