Struct pyo3::ffi::PyASCIIObject

source ·
#[repr(C)]
pub struct PyASCIIObject { pub ob_base: PyObject, pub length: isize, pub hash: isize, pub state: u32, pub wstr: *mut i32, }

Fields§

§ob_base: PyObject§length: isize§hash: isize§state: u32

A bit field with various properties.

Rust doesn’t expose bitfields. So we have accessor functions for retrieving values.

unsigned int interned:2; // SSTATE_* constants. unsigned int kind:3; // PyUnicode_*_KIND constants. unsigned int compact:1; unsigned int ascii:1; unsigned int ready:1; unsigned int :24;

§wstr: *mut i32

Implementations§

source§

impl PyASCIIObject

Interacting with the bitfield is not actually well-defined, so we mark these APIs unsafe.

source

pub unsafe fn interned(&self) -> u32

Get the interned field of the PyASCIIObject state bitfield.

Returns one of: SSTATE_NOT_INTERNED, SSTATE_INTERNED_MORTAL, SSTATE_INTERNED_IMMORTAL, or [SSTATE_INTERNED_IMMORTAL_STATIC].

source

pub unsafe fn set_interned(&mut self, val: u32)

Set the interned field of the PyASCIIObject state bitfield.

Calling this function with an argument that is not SSTATE_NOT_INTERNED, SSTATE_INTERNED_MORTAL, SSTATE_INTERNED_IMMORTAL, or [SSTATE_INTERNED_IMMORTAL_STATIC] is invalid.

source

pub unsafe fn kind(&self) -> u32

Get the kind field of the PyASCIIObject state bitfield.

Returns one of: PyUnicode_WCHAR_KIND, PyUnicode_1BYTE_KIND, PyUnicode_2BYTE_KIND, or PyUnicode_4BYTE_KIND.

source

pub unsafe fn set_kind(&mut self, val: u32)

Set the kind field of the PyASCIIObject state bitfield.

Calling this function with an argument that is not PyUnicode_WCHAR_KIND, PyUnicode_1BYTE_KIND, PyUnicode_2BYTE_KIND, or PyUnicode_4BYTE_KIND is invalid.

source

pub unsafe fn compact(&self) -> u32

Get the compact field of the PyASCIIObject state bitfield.

Returns either 0 or 1.

source

pub unsafe fn set_compact(&mut self, val: u32)

Set the compact flag of the PyASCIIObject state bitfield.

Calling this function with an argument that is neither 0 nor 1 is invalid.

source

pub unsafe fn ascii(&self) -> u32

Get the ascii field of the PyASCIIObject state bitfield.

Returns either 0 or 1.

source

pub unsafe fn set_ascii(&mut self, val: u32)

Set the ascii flag of the PyASCIIObject state bitfield.

Calling this function with an argument that is neither 0 nor 1 is invalid.

source

pub unsafe fn ready(&self) -> u32

Get the ready field of the PyASCIIObject state bitfield.

Returns either 0 or 1.

source

pub unsafe fn set_ready(&mut self, val: u32)

Set the ready flag of the PyASCIIObject state bitfield.

Calling this function with an argument that is neither 0 nor 1 is invalid.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.