Struct cpython::PyUnicode [−][src]
pub struct PyUnicode(_);
Represents a Python string.
Corresponds to basestring in Python 2, and str in Python 3.
Methods
impl PyString[src]
impl PyStringpub fn new(py: Python, s: &str) -> PyString[src]
pub fn new(py: Python, s: &str) -> PyStringCreates a new Python string object.
On Python 2.7, this function will create a byte string if the
input string is ASCII-only; and a unicode string otherwise.
Use PyUnicode::new() to always create a unicode string.
Panics if out of memory.
pub fn data(&self, py: Python) -> PyStringData[src]
pub fn data(&self, py: Python) -> PyStringDataGets the python string data in its underlying representation.
For Python 2 byte strings, this function always returns PyStringData::Utf8,
even if the bytes are not valid UTF-8.
For unicode strings, returns the underlying representation used by Python.
pub fn to_string(&self, py: Python) -> PyResult<Cow<str>>[src]
pub fn to_string(&self, py: Python) -> PyResult<Cow<str>>Convert the PyString into a Rust string.
On Python 2.7, if the PyString refers to a byte string,
it will be decoded using UTF-8.
Returns a UnicodeDecodeError if the input is not valid unicode
(containing unpaired surrogates, or a Python 2.7 byte string that is
not valid UTF-8).
pub fn to_string_lossy(&self, py: Python) -> Cow<str>[src]
pub fn to_string_lossy(&self, py: Python) -> Cow<str>Convert the PyString into a Rust string.
On Python 2.7, if the PyString refers to a byte string,
it will be decoded using UTF-8.
Unpaired surrogates and (on Python 2.7) invalid UTF-8 sequences are replaced with U+FFFD REPLACEMENT CHARACTER.
Trait Implementations
impl ToPyObject for PyString[src]
impl ToPyObject for PyStringIdentity conversion: allows using existing PyObject instances where
T: ToPyObject is expected.
type ObjectType = PyString
fn to_py_object(&self, py: Python) -> PyString[src]
fn to_py_object(&self, py: Python) -> PyStringConverts self into a Python object.
fn into_py_object(self, _py: Python) -> PyString[src]
fn into_py_object(self, _py: Python) -> PyStringConverts self into a Python object. Read more
fn with_borrowed_ptr<F, R>(&self, _py: Python, f: F) -> R where
F: FnOnce(*mut PyObject) -> R, [src]
fn with_borrowed_ptr<F, R>(&self, _py: Python, f: F) -> R where
F: FnOnce(*mut PyObject) -> R, Converts self into a Python object and calls the specified closure on the native FFI pointer underlying the Python object. Read more
impl<'source> FromPyObject<'source> for PyString[src]
impl<'source> FromPyObject<'source> for PyStringfn extract(py: Python, obj: &'source PyObject) -> PyResult<PyString>[src]
fn extract(py: Python, obj: &'source PyObject) -> PyResult<PyString>Extracts Self from the source PyObject.
impl<'source> FromPyObject<'source> for &'source PyString[src]
impl<'source> FromPyObject<'source> for &'source PyStringfn extract(py: Python, obj: &'source PyObject) -> PyResult<&'source PyString>[src]
fn extract(py: Python, obj: &'source PyObject) -> PyResult<&'source PyString>Extracts Self from the source PyObject.
impl PythonObject for PyString[src]
impl PythonObject for PyStringfn as_object(&self) -> &PyObject[src]
fn as_object(&self) -> &PyObjectCasts the Python object to PyObject.
fn into_object(self) -> PyObject[src]
fn into_object(self) -> PyObjectCasts the Python object to PyObject.
unsafe fn unchecked_downcast_from(obj: PyObject) -> Self[src]
unsafe fn unchecked_downcast_from(obj: PyObject) -> SelfUnchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.
ⓘImportant traits for &'a mut Runsafe fn unchecked_downcast_borrow_from<'a>(obj: &'a PyObject) -> &'a Self[src]
unsafe fn unchecked_downcast_borrow_from<'a>(obj: &'a PyObject) -> &'a SelfUnchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.
impl PythonObjectWithCheckedDowncast for PyString[src]
impl PythonObjectWithCheckedDowncast for PyStringfn downcast_from<'p>(
py: Python<'p>,
obj: PyObject
) -> Result<PyString, PythonObjectDowncastError<'p>>[src]
fn downcast_from<'p>(
py: Python<'p>,
obj: PyObject
) -> Result<PyString, PythonObjectDowncastError<'p>>Cast from PyObject to a concrete Python object type.
fn downcast_borrow_from<'a, 'p>(
py: Python<'p>,
obj: &'a PyObject
) -> Result<&'a PyString, PythonObjectDowncastError<'p>>[src]
fn downcast_borrow_from<'a, 'p>(
py: Python<'p>,
obj: &'a PyObject
) -> Result<&'a PyString, PythonObjectDowncastError<'p>>Cast from PyObject to a concrete Python object type.
impl PythonObjectWithTypeObject for PyString[src]
impl PythonObjectWithTypeObject for PyStringfn type_object(py: Python) -> PyType[src]
fn type_object(py: Python) -> PyTypeRetrieves the type object for this Python object type.