#[repr(C)]pub(crate) struct PyClassObjectContents<T: PyClassImpl> {
pub(crate) value: ManuallyDrop<UnsafeCell<T>>,
pub(crate) borrow_checker: <T::PyClassMutability as PyClassMutability>::Storage,
pub(crate) thread_checker: T::ThreadChecker,
pub(crate) dict: T::Dict,
pub(crate) weakref: T::WeakRef,
}
Fields§
§value: ManuallyDrop<UnsafeCell<T>>
§borrow_checker: <T::PyClassMutability as PyClassMutability>::Storage
§thread_checker: T::ThreadChecker
§dict: T::Dict
§weakref: T::WeakRef
Auto Trait Implementations§
impl<T> !Freeze for PyClassObjectContents<T>
impl<T> !RefUnwindSafe for PyClassObjectContents<T>
impl<T> Send for PyClassObjectContents<T>where
<<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 PyClassObjectContents<T>
impl<T> Unpin for PyClassObjectContents<T>where
<<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 PyClassObjectContents<T>where
<<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