pub struct PyDictKeys(/* private fields */);
Expand description
Represents a Python dict_keys
.
Trait Implementations§
Source§impl AsPyPointer for PyDictKeys
impl AsPyPointer for PyDictKeys
Source§impl AsRef<PyAny> for PyDictKeys
impl AsRef<PyAny> for PyDictKeys
Source§impl Deref for PyDictKeys
impl Deref for PyDictKeys
Source§impl PyTypeInfo for PyDictKeys
impl PyTypeInfo for PyDictKeys
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 PyDictKeys
Auto Trait Implementations§
impl !Freeze for PyDictKeys
impl !RefUnwindSafe for PyDictKeys
impl !Send for PyDictKeys
impl !Sync for PyDictKeys
impl Unpin for PyDictKeys
impl UnwindSafe for PyDictKeys
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