Struct pyo3::types::PyFrozenSetBuilder
source · pub struct PyFrozenSetBuilder<'py> { /* private fields */ }
Expand description
Allows building a Python frozenset
one item at a time
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: ToPyObject,
pub fn add<K>(&mut self, key: K) -> PyResult<()>where
K: ToPyObject,
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> 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