Struct pyo3_ffi::PyUnicodeErrorObject
source · [−]#[repr(C)]pub struct PyUnicodeErrorObject {
pub exception_base: PyBaseExceptionObject,
pub encoding: *mut PyObject,
pub object: *mut PyObject,
pub start: Py_ssize_t,
pub end: Py_ssize_t,
pub reason: *mut PyObject,
}
Fields
exception_base: PyBaseExceptionObject
encoding: *mut PyObject
object: *mut PyObject
start: Py_ssize_t
end: Py_ssize_t
reason: *mut PyObject
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PyUnicodeErrorObject
impl !Send for PyUnicodeErrorObject
impl !Sync for PyUnicodeErrorObject
impl Unpin for PyUnicodeErrorObject
impl UnwindSafe for PyUnicodeErrorObject
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more