You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Implemented by types which can be used as a concrete Python type inside `Py<T>` smart pointers.
88
88
pubtraitPyTypeCheck{
89
+
/// Name of self. This is used in error messages, for example.
90
+
#[deprecated(
91
+
since = "0.27.0",
92
+
note = "Use ::classinfo_object() instead and format the type name at runtime. Note that using built-in cast features is often better than manual PyTypeCheck usage."
93
+
)]
94
+
constNAME:&'staticstr;
95
+
89
96
/// Provides the full python type of the allowed values.
0 commit comments