pub struct PyComplex(/* private fields */);
Expand description
Represents a Python complex
object.
Values of this type are accessed via PyO3’s smart pointers, e.g. as
Py<PyComplex>
or Bound<'py, PyComplex>
.
For APIs available on complex
objects, see the PyComplexMethods
trait which is implemented for
Bound<'py, PyComplex>
.
Note that PyComplex
supports only basic operations. For advanced operations
consider using num-complex’s Complex
type instead.
This optional dependency can be activated with the num-complex
feature flag.
Implementations§
Trait Implementations§
Source§impl AsPyPointer for PyComplex
impl AsPyPointer for PyComplex
Source§impl PyTypeInfo for PyComplex
impl PyTypeInfo for PyComplex
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
Checks if
object
is an instance of this type or a subclass of this type.impl DerefToPyAny for PyComplex
impl PyLayout<PyComplex> for PyComplexObject
impl PySizedLayout<PyComplex> for PyComplexObject
Auto Trait Implementations§
impl !Freeze for PyComplex
impl !RefUnwindSafe for PyComplex
impl !Send for PyComplex
impl !Sync for PyComplex
impl Unpin for PyComplex
impl UnwindSafe for PyComplex
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