55833365b5
* seals `PyAnyMethods` and friends This seals these new traits, preventing downstream crates from implementing them on their types. These traits are mainly a workaround for arbitrary self receiver types, so this gives us more flexibility if these need to be changed in the future. * move `PyResultExt` seal
35 lines
1.1 KiB
Rust
35 lines
1.1 KiB
Rust
use crate::types::{
|
|
PyBool, PyByteArray, PyBytes, PyCapsule, PyComplex, PyDict, PyFloat, PyFrozenSet, PyList,
|
|
PyMapping, PyModule, PySequence, PySet, PySlice, PyString, PyTraceback, PyTuple, PyType,
|
|
};
|
|
use crate::{ffi, Bound, PyAny, PyResult};
|
|
|
|
pub trait Sealed {}
|
|
|
|
// for FfiPtrExt
|
|
impl Sealed for *mut ffi::PyObject {}
|
|
|
|
// for PyResultExt
|
|
impl Sealed for PyResult<Bound<'_, PyAny>> {}
|
|
|
|
// for Py(...)Methods
|
|
impl Sealed for Bound<'_, PyAny> {}
|
|
impl Sealed for Bound<'_, PyBool> {}
|
|
impl Sealed for Bound<'_, PyByteArray> {}
|
|
impl Sealed for Bound<'_, PyBytes> {}
|
|
impl Sealed for Bound<'_, PyCapsule> {}
|
|
impl Sealed for Bound<'_, PyComplex> {}
|
|
impl Sealed for Bound<'_, PyDict> {}
|
|
impl Sealed for Bound<'_, PyFloat> {}
|
|
impl Sealed for Bound<'_, PyFrozenSet> {}
|
|
impl Sealed for Bound<'_, PyList> {}
|
|
impl Sealed for Bound<'_, PyMapping> {}
|
|
impl Sealed for Bound<'_, PyModule> {}
|
|
impl Sealed for Bound<'_, PySequence> {}
|
|
impl Sealed for Bound<'_, PySet> {}
|
|
impl Sealed for Bound<'_, PySlice> {}
|
|
impl Sealed for Bound<'_, PyString> {}
|
|
impl Sealed for Bound<'_, PyTraceback> {}
|
|
impl Sealed for Bound<'_, PyTuple> {}
|
|
impl Sealed for Bound<'_, PyType> {}
|