pub struct PyMemoryError(/* private fields */);
Expand description
Represents Python’s MemoryError
exception.
§Example: Raising MemoryError from Rust
This exception can be sent to Python code by converting it into a
PyErr
, where Python code can then catch it.
use pyo3::prelude::*;
use pyo3::exceptions::PyMemoryError;
#[pyfunction]
fn always_throws() -> PyResult<()> {
let message = "I'm MemoryError, and I was raised from Rust.";
Err(PyMemoryError::new_err(message))
}
Python code:
from my_module import always_throws
try:
always_throws()
except MemoryError as e:
print(f"Caught an exception: {e}")
§Example: Catching MemoryError in Rust
use pyo3::prelude::*;
use pyo3::exceptions::PyMemoryError;
Python::with_gil(|py| {
let result: PyResult<()> = py.run_bound("raise MemoryError", None, None);
let error_type = match result {
Ok(_) => "Not an error",
Err(error) if error.is_instance_of::<PyMemoryError>(py) => "MemoryError",
Err(_) => "Some other error",
};
assert_eq!(error_type, "MemoryError");
});
Implementations§
Source§impl PyMemoryError
impl PyMemoryError
Trait Implementations§
Source§impl AsPyPointer for PyMemoryError
impl AsPyPointer for PyMemoryError
Source§impl AsRef<PyAny> for PyMemoryError
impl AsRef<PyAny> for PyMemoryError
Source§impl Deref for PyMemoryError
impl Deref for PyMemoryError
Source§impl PyTypeInfo for PyMemoryError
impl PyTypeInfo for PyMemoryError
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 type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
Returns the safe abstraction over the type object.
impl DerefToPyAny for PyMemoryError
impl PyLayout<PyMemoryError> for PyBaseExceptionObject
impl PySizedLayout<PyMemoryError> for PyBaseExceptionObject
impl ToPyErr for PyMemoryError
Auto Trait Implementations§
impl !Freeze for PyMemoryError
impl !RefUnwindSafe for PyMemoryError
impl !Send for PyMemoryError
impl !Sync for PyMemoryError
impl Unpin for PyMemoryError
impl UnwindSafe for PyMemoryError
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