Struct cu29_export::PyLogIterator
source · pub struct PyLogIterator { /* private fields */ }Trait Implementations§
source§impl PyClassImpl for PyLogIterator
impl PyClassImpl for PyLogIterator
source§const IS_BASETYPE: bool = false
const IS_BASETYPE: bool = false
#[pyclass(subclass)]
source§const IS_SUBCLASS: bool = false
const IS_SUBCLASS: bool = false
#[pyclass(extends=…)]
source§const IS_MAPPING: bool = false
const IS_MAPPING: bool = false
#[pyclass(mapping)]
source§const IS_SEQUENCE: bool = false
const IS_SEQUENCE: bool = false
#[pyclass(sequence)]
§type ThreadChecker = SendablePyClass<PyLogIterator>
type ThreadChecker = SendablePyClass<PyLogIterator>
This handles following two situations: Read more
§type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
type PyClassMutability = <<PyAny as PyClassBaseType>::PyClassMutability as PyClassMutability>::MutableChild
Immutable or mutable
§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.fn items_iter() -> PyClassItemsIter
fn lazy_type_object() -> &'static LazyTypeObject<Self>
fn dict_offset() -> Option<isize>
fn weaklist_offset() -> Option<isize>
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a PyLogIterator
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a PyLogIterator
source§impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut PyLogIterator
impl<'a, 'py> PyFunctionArgument<'a, 'py> for &'a mut PyLogIterator
source§impl PyMethods<PyLogIterator> for PyClassImplCollector<PyLogIterator>
impl PyMethods<PyLogIterator> for PyClassImplCollector<PyLogIterator>
fn py_methods(self) -> &'static PyClassItems
source§impl PyTypeInfo for PyLogIterator
impl PyTypeInfo for PyLogIterator
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 type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
fn type_object_bound(py: Python<'_>) -> Bound<'_, PyType>
Returns the safe abstraction over the type object.
impl DerefToPyAny for PyLogIterator
Auto Trait Implementations§
impl Freeze for PyLogIterator
impl !RefUnwindSafe for PyLogIterator
impl Send for PyLogIterator
impl !Sync for PyLogIterator
impl Unpin for PyLogIterator
impl !UnwindSafe for PyLogIterator
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