Trait cpython::PythonObjectWithCheckedDowncast [−][src]
pub trait PythonObjectWithCheckedDowncast: PythonObject { fn downcast_from<'p>(
_: Python<'p>,
_: PyObject
) -> Result<Self, PythonObjectDowncastError<'p>>; fn downcast_borrow_from<'a, 'p>(
_: Python<'p>,
_: &'a PyObject
) -> Result<&'a Self, PythonObjectDowncastError<'p>>; }
Trait implemented by Python object types that allow a checked downcast.
Required Methods
fn downcast_from<'p>(
_: Python<'p>,
_: PyObject
) -> Result<Self, PythonObjectDowncastError<'p>>
_: Python<'p>,
_: PyObject
) -> Result<Self, PythonObjectDowncastError<'p>>
Cast from PyObject to a concrete Python object type.
fn downcast_borrow_from<'a, 'p>(
_: Python<'p>,
_: &'a PyObject
) -> Result<&'a Self, PythonObjectDowncastError<'p>>
_: Python<'p>,
_: &'a PyObject
) -> Result<&'a Self, PythonObjectDowncastError<'p>>
Cast from PyObject to a concrete Python object type.
Implementors
impl PythonObjectWithCheckedDowncast for PyObjectimpl PythonObjectWithCheckedDowncast for PyTypeimpl PythonObjectWithCheckedDowncast for PyModuleimpl PythonObjectWithCheckedDowncast for PyStringimpl PythonObjectWithCheckedDowncast for PyBytesimpl PythonObjectWithCheckedDowncast for PyDictimpl PythonObjectWithCheckedDowncast for PyBoolimpl PythonObjectWithCheckedDowncast for PyTupleimpl PythonObjectWithCheckedDowncast for PyListimpl PythonObjectWithCheckedDowncast for PyLongimpl PythonObjectWithCheckedDowncast for PyFloatimpl PythonObjectWithCheckedDowncast for PySequenceimpl PythonObjectWithCheckedDowncast for BaseExceptionimpl PythonObjectWithCheckedDowncast for Exceptionimpl PythonObjectWithCheckedDowncast for LookupErrorimpl PythonObjectWithCheckedDowncast for AssertionErrorimpl PythonObjectWithCheckedDowncast for AttributeErrorimpl PythonObjectWithCheckedDowncast for EOFErrorimpl PythonObjectWithCheckedDowncast for EnvironmentErrorimpl PythonObjectWithCheckedDowncast for FloatingPointErrorimpl PythonObjectWithCheckedDowncast for IOErrorimpl PythonObjectWithCheckedDowncast for ImportErrorimpl PythonObjectWithCheckedDowncast for IndexErrorimpl PythonObjectWithCheckedDowncast for KeyErrorimpl PythonObjectWithCheckedDowncast for KeyboardInterruptimpl PythonObjectWithCheckedDowncast for MemoryErrorimpl PythonObjectWithCheckedDowncast for NameErrorimpl PythonObjectWithCheckedDowncast for NotImplementedErrorimpl PythonObjectWithCheckedDowncast for OSErrorimpl PythonObjectWithCheckedDowncast for OverflowErrorimpl PythonObjectWithCheckedDowncast for ReferenceErrorimpl PythonObjectWithCheckedDowncast for RuntimeErrorimpl PythonObjectWithCheckedDowncast for SyntaxErrorimpl PythonObjectWithCheckedDowncast for SystemErrorimpl PythonObjectWithCheckedDowncast for SystemExitimpl PythonObjectWithCheckedDowncast for TypeErrorimpl PythonObjectWithCheckedDowncast for ValueErrorimpl PythonObjectWithCheckedDowncast for WindowsErrorimpl PythonObjectWithCheckedDowncast for ZeroDivisionErrorimpl PythonObjectWithCheckedDowncast for BufferErrorimpl PythonObjectWithCheckedDowncast for UnicodeDecodeErrorimpl PythonObjectWithCheckedDowncast for UnicodeEncodeErrorimpl PythonObjectWithCheckedDowncast for UnicodeTranslateError