[−][src]Struct cpython::exc::ConnectionAbortedError
Trait Implementations
impl<'s> FromPyObject<'s> for ConnectionAbortedError[src]
impl<'s> FromPyObject<'s> for &'s ConnectionAbortedError[src]
impl PythonObject for ConnectionAbortedError[src]
fn as_object(&self) -> &PyObject[src]
fn into_object(self) -> PyObject[src]
unsafe fn unchecked_downcast_from(obj: PyObject) -> Self[src]
Unchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.
unsafe fn unchecked_downcast_borrow_from<'a>(obj: &'a PyObject) -> &'a Self[src]
Unchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.
impl PythonObjectWithCheckedDowncast for ConnectionAbortedError[src]
fn downcast_from<'p>(
py: Python<'p>,
obj: PyObject
) -> Result<ConnectionAbortedError, PythonObjectDowncastError<'p>>[src]
py: Python<'p>,
obj: PyObject
) -> Result<ConnectionAbortedError, PythonObjectDowncastError<'p>>
fn downcast_borrow_from<'a, 'p>(
py: Python<'p>,
obj: &'a PyObject
) -> Result<&'a ConnectionAbortedError, PythonObjectDowncastError<'p>>[src]
py: Python<'p>,
obj: &'a PyObject
) -> Result<&'a ConnectionAbortedError, PythonObjectDowncastError<'p>>
impl PythonObjectWithTypeObject for ConnectionAbortedError[src]
fn type_object(py: Python) -> PyType[src]
impl ToPyObject for ConnectionAbortedError[src]
Identity conversion: allows using existing PyObject instances where
T: ToPyObject is expected.
type ObjectType = ConnectionAbortedError
fn to_py_object(&self, py: Python) -> ConnectionAbortedError[src]
fn into_py_object(self, _py: Python) -> ConnectionAbortedError[src]
fn with_borrowed_ptr<F, R>(&self, _py: Python, f: F) -> R where
F: FnOnce(*mut PyObject) -> R, [src]
F: FnOnce(*mut PyObject) -> R,
Auto Trait Implementations
impl RefUnwindSafe for ConnectionAbortedError
impl Send for ConnectionAbortedError
impl Sync for ConnectionAbortedError
impl Unpin for ConnectionAbortedError
impl UnwindSafe for ConnectionAbortedError
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,