#[repr(C)]pub struct PyClassObject<T: PyClassImpl> {
pub(crate) ob_base: <T::BaseType as PyClassBaseType>::LayoutAsBase,
pub(crate) contents: PyClassObjectContents<T>,
}
Expand description
The layout of a PyClass as a Python object
Fields§
§ob_base: <T::BaseType as PyClassBaseType>::LayoutAsBase
§contents: PyClassObjectContents<T>
Implementations§
Source§impl<T: PyClassImpl> PyClassObject<T>
impl<T: PyClassImpl> PyClassObject<T>
pub(crate) fn get_ptr(&self) -> *mut T
Sourcepub(crate) fn dict_offset() -> Py_ssize_t
pub(crate) fn dict_offset() -> Py_ssize_t
Gets the offset of the dictionary from the start of the struct in bytes.
Sourcepub(crate) fn weaklist_offset() -> Py_ssize_t
pub(crate) fn weaklist_offset() -> Py_ssize_t
Gets the offset of the weakref list from the start of the struct in bytes.
Source§impl<T: PyClassImpl> PyClassObject<T>
impl<T: PyClassImpl> PyClassObject<T>
pub(crate) fn borrow_checker( &self, ) -> &<T::PyClassMutability as PyClassMutability>::Checker
Trait Implementations§
Source§impl<T: PyClassImpl> PyClassObjectLayout<T> for PyClassObject<T>
impl<T: PyClassImpl> PyClassObjectLayout<T> for PyClassObject<T>
fn ensure_threadsafe(&self)
fn check_threadsafe(&self) -> Result<(), PyBorrowError>
impl<T: PyClassImpl> PyLayout<T> for PyClassObject<T>
impl<T: PyClass> PySizedLayout<T> for PyClassObject<T>
Auto Trait Implementations§
impl<T> !Freeze for PyClassObject<T>
impl<T> !RefUnwindSafe for PyClassObject<T>
impl<T> Send for PyClassObject<T>where
<<T as PyClassImpl>::BaseType as PyClassBaseType>::LayoutAsBase: Send,
<<T as PyClassImpl>::PyClassMutability as PyClassMutability>::Storage: Send,
<T as PyClassImpl>::ThreadChecker: Send,
<T as PyClassImpl>::Dict: Send,
<T as PyClassImpl>::WeakRef: Send,
T: Send,
impl<T> !Sync for PyClassObject<T>
impl<T> Unpin for PyClassObject<T>where
<<T as PyClassImpl>::BaseType as PyClassBaseType>::LayoutAsBase: Unpin,
<<T as PyClassImpl>::PyClassMutability as PyClassMutability>::Storage: Unpin,
<T as PyClassImpl>::ThreadChecker: Unpin,
<T as PyClassImpl>::Dict: Unpin,
<T as PyClassImpl>::WeakRef: Unpin,
T: Unpin,
impl<T> UnwindSafe for PyClassObject<T>where
<<T as PyClassImpl>::BaseType as PyClassBaseType>::LayoutAsBase: UnwindSafe,
<<T as PyClassImpl>::PyClassMutability as PyClassMutability>::Storage: UnwindSafe,
<T as PyClassImpl>::ThreadChecker: UnwindSafe,
<T as PyClassImpl>::Dict: UnwindSafe,
<T as PyClassImpl>::WeakRef: UnwindSafe,
T: UnwindSafe,
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
Mutably borrows from an owned value. Read more
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>
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 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>
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