impl AsRef<PyObjectRef> for PyRef<T>

This commit is contained in:
Jeong YunWon
2021-10-05 02:48:56 +09:00
parent 152cbc6b18
commit 055bad342b

View File

@@ -418,6 +418,15 @@ impl<T: PyObjectPayload> PyRef<T> {
}
}
impl<T> AsRef<PyObjectRef> for PyRef<T>
where
T: PyObjectPayload,
{
fn as_ref(&self) -> &PyObjectRef {
&self.obj
}
}
impl<T> Deref for PyRef<T>
where
T: PyObjectPayload,