pub struct PyFrozenSet(/* private fields */);
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>
.
Implementations§
Source§impl PyFrozenSet
impl PyFrozenSet
Sourcepub fn new_bound<'a, 'p, T: ToPyObject + 'a>(
py: Python<'p>,
elements: impl IntoIterator<Item = &'a T>,
) -> PyResult<Bound<'p, PyFrozenSet>>
pub fn new_bound<'a, 'p, T: ToPyObject + 'a>( py: Python<'p>, elements: impl IntoIterator<Item = &'a T>, ) -> PyResult<Bound<'p, PyFrozenSet>>
Creates a new frozenset.
May panic when running out of memory.
Sourcepub fn empty_bound(py: Python<'_>) -> PyResult<Bound<'_, PyFrozenSet>>
pub fn empty_bound(py: Python<'_>) -> PyResult<Bound<'_, PyFrozenSet>>
Creates a new empty frozen set
Trait Implementations§
Source§impl AsPyPointer for PyFrozenSet
impl AsPyPointer for PyFrozenSet
Source§impl AsRef<PyAny> for PyFrozenSet
impl AsRef<PyAny> for PyFrozenSet
Source§impl Deref for PyFrozenSet
impl Deref for PyFrozenSet
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
Checks if
object
is an instance of this type or a subclass of this type.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> 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