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
ob_refcnt: Py_ssize_t
ob_type: *mut PyTypeObject
length: Py_ssize_t
data: *mut Py_UNICODE
hash: c_long
defenc: *mut PyObject
Trait Implementations
impl Copy for PyUnicodeObject
[src]
impl Clone for PyUnicodeObject
[src]
fn clone(&self) -> PyUnicodeObject
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more