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