pub struct DowncastError<'a, 'py> {
from: Borrowed<'a, 'py, PyAny>,
to: Cow<'static, str>,
}๐Deprecated since 0.27.0:
replaced with CastError
Expand description
Error that indicates a failure to convert a PyAny to a more specific Python type.
Fieldsยง
ยงfrom: Borrowed<'a, 'py, PyAny>๐Deprecated since 0.27.0:
ยงreplaced with CastError
to: Cow<'static, str>๐Deprecated since 0.27.0:
replaced with CastError
Implementationsยง
Trait Implementationsยง
Sourceยงimpl<'a, 'py> Debug for DowncastError<'a, 'py>
impl<'a, 'py> Debug for DowncastError<'a, 'py>
Sourceยงimpl Display for DowncastError<'_, '_>
impl Display for DowncastError<'_, '_>
Sourceยง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
Sourceยง#[doc(hidden)]fn type_id(&self, _: Internal) -> TypeIdwhere
Self: 'static,
#[doc(hidden)]fn type_id(&self, _: Internal) -> TypeIdwhere
Self: 'static,
๐ฌThis is a nightly-only experimental API. (
error_type_id)Gets the
TypeId of self.1.0.0 ยท Sourceยงfn description(&self) -> &str
fn description(&self) -> &str
๐Deprecated since 1.42.0:
use the Display impl or to_string()
Sourceยงimpl From<DowncastError<'_, '_>> for PyErr
Convert CastError to Python TypeError.
impl From<DowncastError<'_, '_>> for PyErr
Convert CastError to Python TypeError.
Sourceยง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
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 moreSourceยงimpl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Sourceยง#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
๐ฌThis is a nightly-only experimental API. (
sized_type_properties)Sourceยง#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
๐ฌThis is a nightly-only experimental API. (
sized_type_properties)Sourceยง#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
๐ฌThis is a nightly-only experimental API. (
ptr_alignment_type)Sourceยง#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
๐ฌThis is a nightly-only experimental API. (
sized_type_properties)Sourceยง#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
๐ฌThis is a nightly-only experimental API. (
sized_type_properties)Sourceยง#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[doc(hidden)]const MAX_SLICE_LEN: usize = _
๐ฌThis is a nightly-only experimental API. (
sized_type_properties)The largest safe length for a
[Self]. Read more