pub struct DeprecationTest<T>(Deprecation, PhantomData<T>);
Expand description
Autoref specialization setup to emit deprecation warnings for autogenerated pyclass equality.
Tuple Fields§
§0: Deprecation
§1: PhantomData<T>
Implementations§
Source§impl<T> DeprecationTest<T>
impl<T> DeprecationTest<T>
Source§impl<T> DeprecationTest<T>where
T: HasCustomRichCmp,
impl<T> DeprecationTest<T>where
T: HasCustomRichCmp,
Sourcepub fn autogenerated_equality(&self)
pub fn autogenerated_equality(&self)
For HasCustomRichCmp
types; no deprecation warning.
Methods from Deref<Target = Deprecation>§
Sourcepub fn autogenerated_equality(&self)
👎Deprecated since 0.22.0: Implicit equality for simple enums is deprecated. Use #[pyclass(eq, eq_int)]
to keep the current behavior.
pub fn autogenerated_equality(&self)
#[pyclass(eq, eq_int)]
to keep the current behavior.For types which don’t implement HasCustomRichCmp
; emits deprecation warning.
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for DeprecationTest<T>
impl<T> RefUnwindSafe for DeprecationTest<T>where
T: RefUnwindSafe,
impl<T> Send for DeprecationTest<T>where
T: Send,
impl<T> Sync for DeprecationTest<T>where
T: Sync,
impl<T> Unpin for DeprecationTest<T>where
T: Unpin,
impl<T> UnwindSafe for DeprecationTest<T>where
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