Struct puff_rs::python::redis::RedisGlobal
source · pub struct RedisGlobal;Trait Implementations
sourceimpl IntoPy<Py<PyAny>> for RedisGlobal
impl IntoPy<Py<PyAny>> for RedisGlobal
sourceimpl PyClass for RedisGlobal
impl PyClass for RedisGlobal
type Dict = PyClassDummySlot
type Dict = PyClassDummySlot
Specify this class has
#[pyclass(dict)] or not.type WeakRef = PyClassDummySlot
type WeakRef = PyClassDummySlot
Specify this class has
#[pyclass(weakref)] or not.type BaseNativeType = PyAny
type BaseNativeType = PyAny
The closest native ancestor. This is
PyAny by default, and when you declare
#[pyclass(extends=PyDict)], it’s PyDict. Read moresourceimpl PyClassImpl for RedisGlobal
impl PyClassImpl for RedisGlobal
sourceconst IS_BASETYPE: bool = false
const IS_BASETYPE: bool = false
#[pyclass(subclass)]
sourceconst IS_SUBCLASS: bool = false
const IS_SUBCLASS: bool = false
#[pyclass(extends=…)]
sourceconst IS_MAPPING: bool = false
const IS_MAPPING: bool = false
#[pyclass(mapping)]
type Layout = PyCell<RedisGlobal>
type Layout = PyCell<RedisGlobal>
Layout
type ThreadChecker = ThreadCheckerStub<RedisGlobal>
type ThreadChecker = ThreadCheckerStub<RedisGlobal>
This handles following two situations: Read more
fn for_all_items(visitor: &mut dyn FnMut(&PyClassItems))
fn dict_offset() -> Option<isize>
fn weaklist_offset() -> Option<isize>
sourceimpl PyMethods<RedisGlobal> for PyClassImplCollector<RedisGlobal>
impl PyMethods<RedisGlobal> for PyClassImplCollector<RedisGlobal>
fn py_methods(self) -> &'static PyClassItems
sourceimpl PyTypeInfo for RedisGlobal
impl PyTypeInfo for RedisGlobal
type AsRefTarget = PyCell<RedisGlobal>
type AsRefTarget = PyCell<RedisGlobal>
Utility type to make Py::as_ref work.
sourcefn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
fn type_object_raw(py: Python<'_>) -> *mut PyTypeObject
PyTypeObject instance for this type.
sourcefn is_type_of(object: &PyAny) -> bool
fn is_type_of(object: &PyAny) -> bool
Checks if
object is an instance of this type or a subclass of this type.sourcefn is_exact_type_of(object: &PyAny) -> bool
fn is_exact_type_of(object: &PyAny) -> bool
Checks if
object is an instance of this type.sourceimpl ToPyObject for RedisGlobal
impl ToPyObject for RedisGlobal
Auto Trait Implementations
impl RefUnwindSafe for RedisGlobal
impl Send for RedisGlobal
impl Sync for RedisGlobal
impl Unpin for RedisGlobal
impl UnwindSafe for RedisGlobal
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> PyTypeObject for Twhere
T: PyTypeInfo,
impl<T> PyTypeObject for Twhere
T: PyTypeInfo,
sourcefn type_object(py: Python<'_>) -> &PyType
fn type_object(py: Python<'_>) -> &PyType
Returns the safe abstraction over the type object.