pub struct PyRefMut<'p, T: PyClass<Frozen = False>> { /* private fields */ }
Expand description
A wrapper type for a mutably borrowed value from a [Bound<'py, T>
].
See the module-level documentation for more information.
Implementations§
Source§impl<'py, T: PyClass<Frozen = False>> PyRefMut<'py, T>
impl<'py, T: PyClass<Frozen = False>> PyRefMut<'py, T>
Source§impl<'p, T, U> PyRefMut<'p, T>
impl<'p, T, U> PyRefMut<'p, T>
Sourcepub fn into_super(self) -> PyRefMut<'p, U>
pub fn into_super(self) -> PyRefMut<'p, U>
Gets a PyRef<T::BaseType>
.
See PyRef::into_super
for more.
Sourcepub fn as_super(&mut self) -> &mut PyRefMut<'p, U>
pub fn as_super(&mut self) -> &mut PyRefMut<'p, U>
Borrows a mutable reference to PyRefMut<T::BaseType>
.
With the help of this method, you can mutate attributes and call mutating
methods on the superclass without consuming the PyRefMut<T>
. This method
can also be chained to access the super-superclass (and so on).
See PyRef::as_super
for more.
Trait Implementations§
Source§impl<'a, T: PyClass<Frozen = False>> AsPyPointer for PyRefMut<'a, T>
impl<'a, T: PyClass<Frozen = False>> AsPyPointer for PyRefMut<'a, T>
Source§impl<'py, T> FromPyObject<'py> for PyRefMut<'py, T>where
T: PyClass<Frozen = False>,
impl<'py, T> FromPyObject<'py> for PyRefMut<'py, T>where
T: PyClass<Frozen = False>,
Auto Trait Implementations§
impl<'p, T> Freeze for PyRefMut<'p, T>
impl<'p, T> RefUnwindSafe for PyRefMut<'p, T>where
T: RefUnwindSafe,
impl<'p, T> !Send for PyRefMut<'p, T>
impl<'p, T> !Sync for PyRefMut<'p, T>
impl<'p, T> Unpin for PyRefMut<'p, T>where
T: Unpin,
impl<'p, T> UnwindSafe for PyRefMut<'p, T>where
T: UnwindSafe,
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