pub struct PyDictItems(/* private fields */);
Expand description
Represents a Python dict_items
.
Trait Implementations§
Source§impl AsPyPointer for PyDictItems
impl AsPyPointer for PyDictItems
Source§impl AsRef<PyAny> for PyDictItems
impl AsRef<PyAny> for PyDictItems
Source§impl Deref for PyDictItems
impl Deref for PyDictItems
Source§impl PyTypeInfo for PyDictItems
impl PyTypeInfo for PyDictItems
Source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
Source§fn is_type_of_bound(obj: &Bound<'_, PyAny>) -> bool
fn is_type_of_bound(obj: &Bound<'_, PyAny>) -> bool
Checks if
object
is an instance of this type or a subclass of this type.impl DerefToPyAny for PyDictItems
Auto Trait Implementations§
impl !Freeze for PyDictItems
impl !RefUnwindSafe for PyDictItems
impl !Send for PyDictItems
impl !Sync for PyDictItems
impl Unpin for PyDictItems
impl UnwindSafe for PyDictItems
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