pub struct PyRefMut<'p, T>where
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> PyRefMut<'py, T>where
T: PyClass<Frozen = False>,
impl<'py, T> PyRefMut<'py, T>where
T: PyClass<Frozen = False>,
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<'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>,
Source§impl<'a, 'py, T> IntoPyObject<'py> for &'a PyRefMut<'py, T>where
T: PyClass<Frozen = False>,
impl<'a, 'py, T> IntoPyObject<'py> for &'a PyRefMut<'py, T>where
T: PyClass<Frozen = False>,
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a conversion error.
Source§fn into_pyobject(
self,
_py: Python<'py>,
) -> Result<<&'a PyRefMut<'py, T> as IntoPyObject<'py>>::Output, <&'a PyRefMut<'py, T> as IntoPyObject<'py>>::Error>
fn into_pyobject( self, _py: Python<'py>, ) -> Result<<&'a PyRefMut<'py, T> as IntoPyObject<'py>>::Output, <&'a PyRefMut<'py, T> as IntoPyObject<'py>>::Error>
Performs the conversion.
Source§impl<'py, T> IntoPyObject<'py> for PyRefMut<'py, T>where
T: PyClass<Frozen = False>,
impl<'py, T> IntoPyObject<'py> for PyRefMut<'py, T>where
T: PyClass<Frozen = False>,
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a conversion error.
Source§fn into_pyobject(
self,
_py: Python<'py>,
) -> Result<<PyRefMut<'py, T> as IntoPyObject<'py>>::Output, <PyRefMut<'py, T> as IntoPyObject<'py>>::Error>
fn into_pyobject( self, _py: Python<'py>, ) -> Result<<PyRefMut<'py, T> as IntoPyObject<'py>>::Output, <PyRefMut<'py, T> as IntoPyObject<'py>>::Error>
Performs the conversion.
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
Source§impl<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
impl<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
Converts
self into an owned Python object, dropping type information.