Struct pyo3::ffi::PySetObject[][src]

#[repr(C)]
pub struct PySetObject { pub ob_base: PyObject, pub fill: Py_ssize_t, pub used: Py_ssize_t, pub mask: Py_ssize_t, pub table: *mut setentry, pub hash: Py_hash_t, pub finger: Py_ssize_t, pub smalltable: [setentry; 8], pub weakreflist: *mut PyObject, }

Fields

ob_base: PyObjectfill: Py_ssize_tused: Py_ssize_tmask: Py_ssize_ttable: *mut setentryhash: Py_hash_tfinger: Py_ssize_tsmalltable: [setentry; 8]weakreflist: *mut PyObject

Trait Implementations

impl Debug for PySetObject[src]

impl PyLayout<PyFrozenSet> for PySetObject[src]

impl PyLayout<PySet> for PySetObject[src]

impl PySizedLayout<PyFrozenSet> for PySetObject[src]

impl PySizedLayout<PySet> for PySetObject[src]

Auto Trait Implementations

impl RefUnwindSafe for PySetObject

impl !Send for PySetObject

impl !Sync for PySetObject

impl Unpin for PySetObject

impl UnwindSafe for PySetObject

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.