Struct python27_sys::PyUnicodeObject[][src]

#[repr(C)]
pub struct PyUnicodeObject { pub ob_refcnt: Py_ssize_t, pub ob_type: *mut PyTypeObject, pub length: Py_ssize_t, pub data: *mut Py_UNICODE, pub hash: c_long, pub defenc: *mut PyObject, }

Fields

Trait Implementations

impl Copy for PyUnicodeObject
[src]

impl Clone for PyUnicodeObject
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations