pub struct QueueEmpty(/* 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 QueueEmpty
impl QueueEmpty
Trait Implementations§
Source§impl AsPyPointer for QueueEmpty
impl AsPyPointer for QueueEmpty
Source§impl AsRef<PyAny> for QueueEmpty
impl AsRef<PyAny> for QueueEmpty
Source§impl Deref for QueueEmpty
impl Deref for QueueEmpty
Source§impl PyTypeInfo for QueueEmpty
impl PyTypeInfo for QueueEmpty
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 QueueEmpty
impl ToPyErr for QueueEmpty
Auto Trait Implementations§
impl !Freeze for QueueEmpty
impl !RefUnwindSafe for QueueEmpty
impl !Send for QueueEmpty
impl !Sync for QueueEmpty
impl Unpin for QueueEmpty
impl UnwindSafe for QueueEmpty
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