Struct DowncastError
pub struct DowncastError<'a, 'py> { /* private fields */ }๐Deprecated since 0.27.0:
replaced with CastError
Available on crate feature
tls only.Expand description
Error that indicates a failure to convert a PyAny to a more specific Python type.
Implementationsยง
ยงimpl<'a, 'py> DowncastError<'a, 'py>
impl<'a, 'py> DowncastError<'a, 'py>
Trait Implementationsยง
ยงimpl<'a, 'py> Debug for DowncastError<'a, 'py>
impl<'a, 'py> Debug for DowncastError<'a, 'py>
ยงimpl Display for DowncastError<'_, '_>
impl Display for DowncastError<'_, '_>
ยงimpl Error for DowncastError<'_, '_>
impl Error for DowncastError<'_, '_>
1.30.0 ยท Sourceยงfn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 ยท Sourceยงfn description(&self) -> &str
fn description(&self) -> &str
๐Deprecated since 1.42.0:
use the Display impl or to_string()
ยงimpl From<DowncastError<'_, '_>> for PyErr
Convert CastError to Python TypeError.
impl From<DowncastError<'_, '_>> for PyErr
Convert CastError to Python TypeError.
ยงfn from(err: DowncastError<'_, '_>) -> PyErr
fn from(err: DowncastError<'_, '_>) -> PyErr
Converts to this type from the input type.
Auto Trait Implementationsยง
impl<'a, 'py> Freeze for DowncastError<'a, 'py>
impl<'a, 'py> !RefUnwindSafe for DowncastError<'a, 'py>
impl<'a, 'py> !Send for DowncastError<'a, 'py>
impl<'a, 'py> !Sync for DowncastError<'a, 'py>
impl<'a, 'py> Unpin for DowncastError<'a, 'py>
impl<'a, 'py> UnsafeUnpin for DowncastError<'a, 'py>
impl<'a, 'py> !UnwindSafe for DowncastError<'a, 'py>
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
ยงimpl<T> Instrument for T
impl<T> Instrument for T
ยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
ยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more