#[repr(transparent)]pub struct PyFrozenSet(PyAny);
Expand description
Represents a Python frozenset
.
Values of this type are accessed via PyO3’s smart pointers, e.g. as
Py<PyFrozenSet>
or Bound<'py, PyFrozenSet>
.
For APIs available on frozenset
objects, see the PyFrozenSetMethods
trait which is implemented for
Bound<'py, PyFrozenSet>
.
Tuple Fields§
§0: PyAny
Implementations§
Source§impl PyFrozenSet
impl PyFrozenSet
#[doc(hidden)] pub const _PYO3_DEF: AddTypeToModule<Self> = _
Source§impl PyFrozenSet
impl PyFrozenSet
Sourcepub fn new<'py, T>(
py: Python<'py>,
elements: impl IntoIterator<Item = T>,
) -> PyResult<Bound<'py, PyFrozenSet>>where
T: IntoPyObject<'py>,
pub fn new<'py, T>(
py: Python<'py>,
elements: impl IntoIterator<Item = T>,
) -> PyResult<Bound<'py, PyFrozenSet>>where
T: IntoPyObject<'py>,
Creates a new frozenset.
May panic when running out of memory.
Sourcepub fn new_bound<'a, 'p, T: ToPyObject + 'a>(
py: Python<'p>,
elements: impl IntoIterator<Item = &'a T>,
) -> PyResult<Bound<'p, PyFrozenSet>>
👎Deprecated since 0.23.0: renamed to PyFrozenSet::new
pub fn new_bound<'a, 'p, T: ToPyObject + 'a>( py: Python<'p>, elements: impl IntoIterator<Item = &'a T>, ) -> PyResult<Bound<'p, PyFrozenSet>>
PyFrozenSet::new
Deprecated name for PyFrozenSet::new
.
Sourcepub fn empty(py: Python<'_>) -> PyResult<Bound<'_, PyFrozenSet>>
pub fn empty(py: Python<'_>) -> PyResult<Bound<'_, PyFrozenSet>>
Creates a new empty frozen set
Sourcepub fn empty_bound(py: Python<'_>) -> PyResult<Bound<'_, PyFrozenSet>>
👎Deprecated since 0.23.0: renamed to PyFrozenSet::empty
pub fn empty_bound(py: Python<'_>) -> PyResult<Bound<'_, PyFrozenSet>>
PyFrozenSet::empty
Deprecated name for PyFrozenSet::empty
.
Methods from Deref<Target = PyAny>§
#[doc(hidden)] pub const _PYO3_DEF: AddTypeToModule<Self> = _
Trait Implementations§
Source§impl AsRef<PyAny> for PyFrozenSet
impl AsRef<PyAny> for PyFrozenSet
Source§impl Deref for PyFrozenSet
impl Deref for PyFrozenSet
Source§impl PyClassBaseType for PyFrozenSet
Available on non-Py_LIMITED_API
only.
impl PyClassBaseType for PyFrozenSet
Available on non-
Py_LIMITED_API
only.Source§impl PyTypeInfo for PyFrozenSet
impl PyTypeInfo for PyFrozenSet
Source§fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
Source§fn is_type_of_bound(obj: &Bound<'_, PyAny>) -> bool
fn is_type_of_bound(obj: &Bound<'_, PyAny>) -> bool
👎Deprecated since 0.23.0: renamed to
PyTypeInfo::is_type_of
Deprecated name for
PyTypeInfo::is_type_of
.Source§fn type_object(py: Python<'_>) -> Bound<'_, PyType>
fn type_object(py: Python<'_>) -> Bound<'_, PyType>
Returns the safe abstraction over the type object.
Source§fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
👎Deprecated since 0.23.0: renamed to
PyTypeInfo::type_object
Deprecated name for
PyTypeInfo::type_object
.Source§fn is_type_of(object: &Bound<'_, PyAny>) -> bool
fn is_type_of(object: &Bound<'_, PyAny>) -> bool
Checks if
object
is an instance of this type or a subclass of this type.Source§fn is_exact_type_of(object: &Bound<'_, PyAny>) -> bool
fn is_exact_type_of(object: &Bound<'_, PyAny>) -> bool
Checks if
object
is an instance of this type.Source§fn is_exact_type_of_bound(object: &Bound<'_, PyAny>) -> bool
fn is_exact_type_of_bound(object: &Bound<'_, PyAny>) -> bool
👎Deprecated since 0.23.0: renamed to
PyTypeInfo::is_exact_type_of
Deprecated name for
PyTypeInfo::is_exact_type_of
.impl DerefToPyAny for PyFrozenSet
impl PyLayout<PyFrozenSet> for PySetObject
impl PySizedLayout<PyFrozenSet> for PySetObject
Auto Trait Implementations§
impl !Freeze for PyFrozenSet
impl !RefUnwindSafe for PyFrozenSet
impl !Send for PyFrozenSet
impl !Sync for PyFrozenSet
impl Unpin for PyFrozenSet
impl UnwindSafe for PyFrozenSet
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