pub trait Sealed { }
Expand description

Private seal for the FromPyObjectBound trait.

This prevents downstream types from implementing the trait before PyO3 is ready to declare the trait as public API.

Implementations on Foreign Types§

Source§

impl Sealed for &str

Source§

impl Sealed for &[u8]

Source§

impl Sealed for Cow<'_, str>

Source§

impl Sealed for Cow<'_, [u8]>

Implementors§

Source§

impl<'py, T> Sealed for T
where T: FromPyObject<'py>,

⚠️ Internal Docs ⚠️ Not Public API 👉 Official Docs Here