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