Struct cpython::PyUnicode[][src]

pub struct PyUnicode(_);

Represents a Python unicode string. Corresponds to unicode in Python 2, and str in Python 3.

Implementations

impl PyUnicode[src]

pub fn new(py: Python<'_>, s: &str) -> PyUnicode[src]

Creates a new Python unicode string object.

Panics if out of memory.

pub fn as_basestring(&self) -> &PyString[src]

Converts from PyUnicode to PyString. This method is only available on Python 2. (note: on Python 3, PyUnicode is a type alias for PyString)

pub fn into_basestring(self) -> PyString[src]

Converts from PyUnicode to PyString. This method is only available on Python 2. (note: on Python 3, PyUnicode is a type alias for PyString)

pub fn data(&self, _py: Python<'_>) -> PyStringData<'_>[src]

Gets the python string data in its underlying representation.

pub fn to_string(&self, py: Python<'_>) -> PyResult<Cow<'_, str>>[src]

Convert the PyUnicode into a Rust string.

Returns a UnicodeDecodeError if the input is not valid unicode (containing unpaired surrogates).

pub fn to_string_lossy(&self, py: Python<'_>) -> Cow<'_, str>[src]

Convert the PyUnicode into a Rust string.

Unpaired surrogates are replaced with U+FFFD REPLACEMENT CHARACTER.

Trait Implementations

impl<'s> FromPyObject<'s> for PyUnicode[src]

impl<'s> FromPyObject<'s> for &'s PyUnicode[src]

impl PythonObject for PyUnicode[src]

unsafe fn unchecked_downcast_from(obj: PyObject) -> Self[src]

Unchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.

unsafe fn unchecked_downcast_borrow_from<'a>(obj: &'a PyObject) -> &'a Self[src]

Unchecked downcast from PyObject to Self. Undefined behavior if the input object does not have the expected type.

impl PythonObjectWithCheckedDowncast for PyUnicode[src]

impl PythonObjectWithTypeObject for PyUnicode[src]

impl ToPyObject for PyUnicode[src]

Identity conversion: allows using existing PyObject instances where T: ToPyObject is expected.

type ObjectType = PyUnicode

Auto Trait Implementations

impl RefUnwindSafe for PyUnicode[src]

impl Send for PyUnicode[src]

impl Sync for PyUnicode[src]

impl Unpin for PyUnicode[src]

impl UnwindSafe for PyUnicode[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.