pub struct TimeoutError(/* private fields */);
Expand description
A Rust type representing an exception defined in Python code.
This type was created by the pyo3::import_exception!
macro - see its documentation
for more information.
Implementations§
Source§impl TimeoutError
impl TimeoutError
Trait Implementations§
Source§impl AsPyPointer for TimeoutError
impl AsPyPointer for TimeoutError
Source§impl AsRef<PyAny> for TimeoutError
impl AsRef<PyAny> for TimeoutError
Source§impl Deref for TimeoutError
impl Deref for TimeoutError
Source§impl PyTypeInfo for TimeoutError
impl PyTypeInfo for TimeoutError
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 TimeoutError
impl ToPyErr for TimeoutError
Auto Trait Implementations§
impl !Freeze for TimeoutError
impl !RefUnwindSafe for TimeoutError
impl !Send for TimeoutError
impl !Sync for TimeoutError
impl Unpin for TimeoutError
impl UnwindSafe for TimeoutError
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