[][src]Struct pyo3::exceptions::UnicodeDecodeError

pub struct UnicodeDecodeError;

Methods

impl UnicodeDecodeError[src]

pub fn py_err<V: ToPyObject + 'static>(args: V) -> PyErr[src]

pub fn into<R, V: ToPyObject + 'static>(args: V) -> PyResult<R>[src]

impl UnicodeDecodeError[src]

pub fn new_err<'p>(
    py: Python<'p>,
    encoding: &CStr,
    input: &[u8],
    range: Range<usize>,
    reason: &CStr
) -> PyResult<&'p PyAny>
[src]

pub fn new_utf8<'p>(
    py: Python<'p>,
    input: &[u8],
    err: Utf8Error
) -> PyResult<&'p PyAny>
[src]

Trait Implementations

impl From<UnicodeDecodeError> for PyErr[src]

impl<T> Into<Result<T, PyErr>> for UnicodeDecodeError[src]

impl PyTypeObject for UnicodeDecodeError[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> PyTypeObject for T where
    T: PyClass
[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.