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_bound(self) -> Bound<'py, PyFrozenSet>
pub fn finalize_bound(self) -> Bound<'py, PyFrozenSet>
Finish building the set and take ownership of its current value
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