Struct python27_sys::PyUnicodeObject
[−]
[src]
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 Clone for PyUnicodeObject[src]
fn clone(&self) -> PyUnicodeObject
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more