Struct pyo3_ffi::PyCompactUnicodeObject
source · #[repr(C)]pub struct PyCompactUnicodeObject {
pub _base: PyASCIIObject,
pub utf8_length: Py_ssize_t,
pub utf8: *mut c_char,
pub wstr_length: Py_ssize_t,
}
Fields§
§_base: PyASCIIObject
§utf8_length: Py_ssize_t
§utf8: *mut c_char
§wstr_length: Py_ssize_t
Auto Trait Implementations§
impl Freeze for PyCompactUnicodeObject
impl RefUnwindSafe for PyCompactUnicodeObject
impl !Send for PyCompactUnicodeObject
impl !Sync for PyCompactUnicodeObject
impl Unpin for PyCompactUnicodeObject
impl UnwindSafe for PyCompactUnicodeObject
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