Struct DowncastIntoError
pub struct DowncastIntoError<'py> { /* private fields */ }๐Deprecated since 0.27.0:
replaced with CastIntoError
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<'py> DowncastIntoError<'py>
impl<'py> DowncastIntoError<'py>
pub fn new(
from: Bound<'py, PyAny>,
to: impl Into<Cow<'static, str>>,
) -> DowncastIntoError<'py>
pub fn new( from: Bound<'py, PyAny>, to: impl Into<Cow<'static, str>>, ) -> DowncastIntoError<'py>
Create a new DowncastIntoError representing a failure to convert the object
from into the type named in to.
pub fn into_inner(self) -> Bound<'py, PyAny>
pub fn into_inner(self) -> Bound<'py, PyAny>
Consumes this DowncastIntoError and returns the original object, allowing continued
use of it after a failed conversion.
See cast_into for an example.
Trait Implementationsยง
ยงimpl<'py> Debug for DowncastIntoError<'py>
impl<'py> Debug for DowncastIntoError<'py>
ยงimpl Display for DowncastIntoError<'_>
impl Display for DowncastIntoError<'_>
ยงimpl Error for DowncastIntoError<'_>
impl Error for DowncastIntoError<'_>
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<DowncastIntoError<'_>> for PyErr
Convert DowncastIntoError to Python TypeError.
impl From<DowncastIntoError<'_>> for PyErr
Convert DowncastIntoError to Python TypeError.
ยงfn from(err: DowncastIntoError<'_>) -> PyErr
fn from(err: DowncastIntoError<'_>) -> PyErr
Converts to this type from the input type.
Auto Trait Implementationsยง
impl<'py> Freeze for DowncastIntoError<'py>
impl<'py> !RefUnwindSafe for DowncastIntoError<'py>
impl<'py> !Send for DowncastIntoError<'py>
impl<'py> !Sync for DowncastIntoError<'py>
impl<'py> Unpin for DowncastIntoError<'py>
impl<'py> UnsafeUnpin for DowncastIntoError<'py>
impl<'py> UnwindSafe for DowncastIntoError<'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