pub struct PyFrozenSetBuilder<'py> {
py_frozen_set: Bound<'py, PyFrozenSet>,
}
Expand description
Allows building a Python frozenset
one item at a time
Fields§
§py_frozen_set: Bound<'py, PyFrozenSet>
Implementations§
Source§impl<'py> PyFrozenSetBuilder<'py>
impl<'py> PyFrozenSetBuilder<'py>
Sourcepub fn new(py: Python<'py>) -> PyResult<PyFrozenSetBuilder<'py>>
pub fn new(py: Python<'py>) -> PyResult<PyFrozenSetBuilder<'py>>
Create a new FrozenSetBuilder
.
Since this allocates a PyFrozenSet
internally it may
panic when running out of memory.
Sourcepub fn add<K>(&mut self, key: K) -> PyResult<()>where
K: IntoPyObject<'py>,
pub fn add<K>(&mut self, key: K) -> PyResult<()>where
K: IntoPyObject<'py>,
Adds an element to the set.
Sourcepub fn finalize(self) -> Bound<'py, PyFrozenSet>
pub fn finalize(self) -> Bound<'py, PyFrozenSet>
Finish building the set and take ownership of its current value
Sourcepub fn finalize_bound(self) -> Bound<'py, PyFrozenSet>
👎Deprecated since 0.23.0: renamed to PyFrozenSetBuilder::finalize
pub fn finalize_bound(self) -> Bound<'py, PyFrozenSet>
PyFrozenSetBuilder::finalize
Deprecated name for PyFrozenSetBuilder::finalize
.
Auto Trait Implementations§
impl<'py> Freeze for PyFrozenSetBuilder<'py>
impl<'py> !RefUnwindSafe for PyFrozenSetBuilder<'py>
impl<'py> !Send for PyFrozenSetBuilder<'py>
impl<'py> !Sync for PyFrozenSetBuilder<'py>
impl<'py> Unpin for PyFrozenSetBuilder<'py>
impl<'py> UnwindSafe for PyFrozenSetBuilder<'py>
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