pub struct PySet(/* private fields */);
Expand description
Represents a Python set
.
Values of this type are accessed via PyO3’s smart pointers, e.g. as
Py<PySet>
or Bound<'py, PySet>
.
For APIs available on set
objects, see the PySetMethods
trait which is implemented for
Bound<'py, PySet>
.
Implementations§
Source§impl PySet
impl PySet
Sourcepub fn new<'py, T>(
py: Python<'py>,
elements: impl IntoIterator<Item = T>,
) -> PyResult<Bound<'py, PySet>>where
T: IntoPyObject<'py>,
pub fn new<'py, T>(
py: Python<'py>,
elements: impl IntoIterator<Item = T>,
) -> PyResult<Bound<'py, PySet>>where
T: IntoPyObject<'py>,
Creates a new set with elements from the given slice.
Returns an error if some element is not hashable.
Sourcepub fn new_bound<'a, 'p, T: ToPyObject + 'a>(
py: Python<'p>,
elements: impl IntoIterator<Item = &'a T>,
) -> PyResult<Bound<'p, PySet>>
👎Deprecated since 0.23.0: renamed to PySet::new
pub fn new_bound<'a, 'p, T: ToPyObject + 'a>( py: Python<'p>, elements: impl IntoIterator<Item = &'a T>, ) -> PyResult<Bound<'p, PySet>>
PySet::new
Deprecated name for PySet::new
.
Sourcepub fn empty_bound(py: Python<'_>) -> PyResult<Bound<'_, PySet>>
👎Deprecated since 0.23.0: renamed to PySet::empty
pub fn empty_bound(py: Python<'_>) -> PyResult<Bound<'_, PySet>>
PySet::empty
Deprecated name for PySet::empty
.
Trait Implementations§
Source§impl PyTypeInfo for PySet
impl PyTypeInfo for PySet
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 PySet
impl PyLayout<PySet> for PySetObject
impl PySizedLayout<PySet> for PySetObject
Auto Trait Implementations§
impl !Freeze for PySet
impl !RefUnwindSafe for PySet
impl !Send for PySet
impl !Sync for PySet
impl Unpin for PySet
impl UnwindSafe for PySet
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