pub enum PyStringData<'a> {
Ucs1(&'a [u8]),
Ucs2(&'a [u16]),
Ucs4(&'a [u32]),
}
Py_LIMITED_API
only.Expand description
Represents raw data backing a Python str
.
Python internally stores strings in various representations. This enumeration represents those variations.
Variants§
Ucs1(&'a [u8])
UCS1 representation.
Ucs2(&'a [u16])
UCS2 representation.
Ucs4(&'a [u32])
UCS4 representation.
Implementations§
Source§impl<'a> PyStringData<'a>
impl<'a> PyStringData<'a>
Sourcepub fn value_width_bytes(&self) -> usize
pub fn value_width_bytes(&self) -> usize
Size in bytes of each value/item in the underlying slice.
Sourcepub fn to_string(self, py: Python<'_>) -> PyResult<Cow<'a, str>>
pub fn to_string(self, py: Python<'_>) -> PyResult<Cow<'a, str>>
Convert the raw data to a Rust string.
For UCS-1 / UTF-8, returns a borrow into the original slice. For UCS-2 and UCS-4, returns an owned string.
Returns PyUnicodeDecodeError if the string data isn’t valid in its purported
storage format. This should only occur for strings that were created via Python
C APIs that skip input validation (like PyUnicode_FromKindAndData
) and should
never occur for strings that were created from Python code.
Sourcepub fn to_string_lossy(self) -> Cow<'a, str>
pub fn to_string_lossy(self) -> Cow<'a, str>
Convert the raw data to a Rust string, possibly with data loss.
Invalid code points will be replaced with U+FFFD REPLACEMENT CHARACTER
.
Returns a borrow into original data, when possible, or owned data otherwise.
The return value of this function should only disagree with Self::to_string when that method would error.
Trait Implementations§
Source§impl<'a> Clone for PyStringData<'a>
impl<'a> Clone for PyStringData<'a>
Source§fn clone(&self) -> PyStringData<'a>
fn clone(&self) -> PyStringData<'a>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<'a> Debug for PyStringData<'a>
impl<'a> Debug for PyStringData<'a>
Source§impl<'a> Eq for PyStringData<'a>
impl<'a> Eq for PyStringData<'a>
#[doc(hidden)] fn assert_receiver_is_total_eq(&self)
Source§impl<'a> PartialEq for PyStringData<'a>
impl<'a> PartialEq for PyStringData<'a>
impl<'a> Copy for PyStringData<'a>
impl<'a> StructuralPartialEq for PyStringData<'a>
Auto Trait Implementations§
impl<'a> Freeze for PyStringData<'a>
impl<'a> RefUnwindSafe for PyStringData<'a>
impl<'a> Send for PyStringData<'a>
impl<'a> Sync for PyStringData<'a>
impl<'a> Unpin for PyStringData<'a>
impl<'a> UnwindSafe for PyStringData<'a>
Blanket Implementations§
Source§impl<T> AssertNotZeroSized for T
impl<T> AssertNotZeroSized for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more