[][src]Struct pyo3::ffi::PyBaseExceptionObject

#[repr(C)]pub struct PyBaseExceptionObject {
    pub ob_base: PyObject,
    pub dict: *mut PyObject,
    pub args: *mut PyObject,
    pub traceback: *mut PyObject,
    pub context: *mut PyObject,
    pub cause: *mut PyObject,
    pub suppress_context: char,
}

Fields

ob_base: PyObjectdict: *mut PyObjectargs: *mut PyObjecttraceback: *mut PyObjectcontext: *mut PyObjectcause: *mut PyObjectsuppress_context: char

Trait Implementations

impl Debug for PyBaseExceptionObject[src]

impl PyLayout<CancelledError> for PyBaseExceptionObject[src]

impl PyLayout<IncompleteReadError> for PyBaseExceptionObject[src]

impl PyLayout<InvalidStateError> for PyBaseExceptionObject[src]

impl PyLayout<LimitOverrunError> for PyBaseExceptionObject[src]

impl PyLayout<PanicException> for PyBaseExceptionObject[src]

impl PyLayout<PyArithmeticError> for PyBaseExceptionObject[src]

impl PyLayout<PyAssertionError> for PyBaseExceptionObject[src]

impl PyLayout<PyAttributeError> for PyBaseExceptionObject[src]

impl PyLayout<PyBaseException> for PyBaseExceptionObject[src]

impl PyLayout<PyBlockingIOError> for PyBaseExceptionObject[src]

impl PyLayout<PyBrokenPipeError> for PyBaseExceptionObject[src]

impl PyLayout<PyBufferError> for PyBaseExceptionObject[src]

impl PyLayout<PyChildProcessError> for PyBaseExceptionObject[src]

impl PyLayout<PyConnectionAbortedError> for PyBaseExceptionObject[src]

impl PyLayout<PyConnectionError> for PyBaseExceptionObject[src]

impl PyLayout<PyConnectionRefusedError> for PyBaseExceptionObject[src]

impl PyLayout<PyConnectionResetError> for PyBaseExceptionObject[src]

impl PyLayout<PyEOFError> for PyBaseExceptionObject[src]

impl PyLayout<PyEnvironmentError> for PyBaseExceptionObject[src]

impl PyLayout<PyException> for PyBaseExceptionObject[src]

impl PyLayout<PyFileExistsError> for PyBaseExceptionObject[src]

impl PyLayout<PyFileNotFoundError> for PyBaseExceptionObject[src]

impl PyLayout<PyFloatingPointError> for PyBaseExceptionObject[src]

impl PyLayout<PyGeneratorExit> for PyBaseExceptionObject[src]

impl PyLayout<PyIOError> for PyBaseExceptionObject[src]

impl PyLayout<PyImportError> for PyBaseExceptionObject[src]

impl PyLayout<PyIndexError> for PyBaseExceptionObject[src]

impl PyLayout<PyInterruptedError> for PyBaseExceptionObject[src]

impl PyLayout<PyIsADirectoryError> for PyBaseExceptionObject[src]

impl PyLayout<PyKeyError> for PyBaseExceptionObject[src]

impl PyLayout<PyKeyboardInterrupt> for PyBaseExceptionObject[src]

impl PyLayout<PyLookupError> for PyBaseExceptionObject[src]

impl PyLayout<PyMemoryError> for PyBaseExceptionObject[src]

impl PyLayout<PyModuleNotFoundError> for PyBaseExceptionObject[src]

impl PyLayout<PyNameError> for PyBaseExceptionObject[src]

impl PyLayout<PyNotADirectoryError> for PyBaseExceptionObject[src]

impl PyLayout<PyNotImplementedError> for PyBaseExceptionObject[src]

impl PyLayout<PyOverflowError> for PyBaseExceptionObject[src]

impl PyLayout<PyPermissionError> for PyBaseExceptionObject[src]

impl PyLayout<PyProcessLookupError> for PyBaseExceptionObject[src]

impl PyLayout<PyRecursionError> for PyBaseExceptionObject[src]

impl PyLayout<PyReferenceError> for PyBaseExceptionObject[src]

impl PyLayout<PyRuntimeError> for PyBaseExceptionObject[src]

impl PyLayout<PyStopAsyncIteration> for PyBaseExceptionObject[src]

impl PyLayout<PySystemError> for PyBaseExceptionObject[src]

impl PyLayout<PyTimeoutError> for PyBaseExceptionObject[src]

impl PyLayout<PyTypeError> for PyBaseExceptionObject[src]

impl PyLayout<PyUnboundLocalError> for PyBaseExceptionObject[src]

impl PyLayout<PyUnicodeDecodeError> for PyBaseExceptionObject[src]

impl PyLayout<PyUnicodeEncodeError> for PyBaseExceptionObject[src]

impl PyLayout<PyUnicodeTranslateError> for PyBaseExceptionObject[src]

impl PyLayout<PyValueError> for PyBaseExceptionObject[src]

impl PyLayout<PyZeroDivisionError> for PyBaseExceptionObject[src]

impl PyLayout<QueueEmpty> for PyBaseExceptionObject[src]

impl PyLayout<QueueFull> for PyBaseExceptionObject[src]

impl PyLayout<TimeoutError> for PyBaseExceptionObject[src]

impl PyLayout<gaierror> for PyBaseExceptionObject[src]

impl PyLayout<herror> for PyBaseExceptionObject[src]

impl PyLayout<timeout> for PyBaseExceptionObject[src]

impl PySizedLayout<PyBaseException> for PyBaseExceptionObject[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.