MCPcopy Create free account
hub / github.com/dgrunwald/rust-cpython / PyCompactUnicodeObject

Class PyCompactUnicodeObject

python3-sys/src/unicodeobject.rs:455–461  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

453#[repr(C)]
454#[cfg(not(Py_LIMITED_API))]
455pub struct PyCompactUnicodeObject {
456 _base: PyASCIIObject,
457 utf8_length: Py_ssize_t,
458 utf8: *mut u8,
459 #[cfg(not(Py_3_12))]
460 wstr_length: Py_ssize_t,
461}
462
463#[repr(C)]
464#[cfg(not(Py_LIMITED_API))]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected