1use std::marker::PhantomData;
23use crate::{conversion::IntoPyObject, Py};
45/// Trait used to combine with zero-sized types to calculate at compile time
6/// some property of a type.
7///
8/// The trick uses the fact that an associated constant has higher priority
9/// than a trait constant, so we can use the trait to define the false case.
10///
11/// The true case is defined in the zero-sized type's impl block, which is
12/// gated on some property like trait bound or only being implemented
13/// for fixed concrete types.
14pub trait Probe {
15const VALUE: bool = false;
16}
1718macro_rules! probe {
19 ($name:ident) => {
20pub struct $name<T>(PhantomData<T>);
21impl<T> Probe for $name<T> {}
22 };
23}
2425probe!(IsPyT);
2627impl<T> IsPyT<Py<T>> {
28pub const VALUE: bool = true;
29}
3031probe!(IsIntoPyObjectRef);
3233// Possible clippy beta regression,
34// see https://github.com/rust-lang/rust-clippy/issues/13578
35#[allow(clippy::extra_unused_lifetimes)]
36impl<'a, 'py, T: 'a> IsIntoPyObjectRef<T>
37where
38&'a T: IntoPyObject<'py>,
39{
40pub const VALUE: bool = true;
41}
4243probe!(IsIntoPyObject);
4445impl<'py, T> IsIntoPyObject<T>
46where
47T: IntoPyObject<'py>,
48{
49pub const VALUE: bool = true;
50}
5152probe!(IsSync);
5354impl<T: Sync> IsSync<T> {
55pub const VALUE: bool = true;
56}
5758probe!(IsOption);
5960impl<T> IsOption<Option<T>> {
61pub const VALUE: bool = true;
62}