pub struct PyArrayDescr(/* private fields */);
Expand description
Binding of numpy.dtype
.
§Example
use numpy::{dtype, get_array_module, PyArrayDescr, PyArrayDescrMethods};
use numpy::pyo3::{types::{IntoPyDict, PyAnyMethods}, Python, ffi::c_str};
Python::with_gil(|py| {
let locals = [("np", get_array_module(py)?)].into_py_dict(py)?;
let dt = py
.eval(c_str!("np.array([1, 2, 3.0]).dtype"), Some(&locals), None)?
.downcast_into::<PyArrayDescr>()?;
assert!(dt.is_equiv_to(&dtype::<f64>(py)));
})
Implementations§
Source§impl PyArrayDescr
impl PyArrayDescr
Sourcepub fn new<'a, 'py, T>(py: Python<'py>, ob: T) -> PyResult<Bound<'py, Self>>where
T: IntoPyObject<'py>,
pub fn new<'a, 'py, T>(py: Python<'py>, ob: T) -> PyResult<Bound<'py, Self>>where
T: IntoPyObject<'py>,
Creates a new type descriptor (“dtype”) object from an arbitrary object.
Equivalent to invoking the constructor of numpy.dtype
.
Sourcepub fn new_bound<'py, T: ToPyObject + ?Sized>(
py: Python<'py>,
ob: &T,
) -> PyResult<Bound<'py, Self>>
👎Deprecated since 0.23.0: renamed to PyArrayDescr::new
pub fn new_bound<'py, T: ToPyObject + ?Sized>( py: Python<'py>, ob: &T, ) -> PyResult<Bound<'py, Self>>
PyArrayDescr::new
Deprecated name for PyArrayDescr::new
.
Sourcepub fn object(py: Python<'_>) -> Bound<'_, Self>
pub fn object(py: Python<'_>) -> Bound<'_, Self>
Shortcut for creating a type descriptor of object
type.
Sourcepub fn object_bound(py: Python<'_>) -> Bound<'_, Self>
👎Deprecated since 0.23.0: renamed to PyArrayDescr::object
pub fn object_bound(py: Python<'_>) -> Bound<'_, Self>
PyArrayDescr::object
Deprecated name for PyArrayDescr::object
.
Trait Implementations§
Source§impl AsRef<PyAny> for PyArrayDescr
impl AsRef<PyAny> for PyArrayDescr
Source§impl Deref for PyArrayDescr
impl Deref for PyArrayDescr
Source§impl PyTypeInfo for PyArrayDescr
impl PyTypeInfo for PyArrayDescr
Source§fn type_object_raw<'py>(py: Python<'py>) -> *mut PyTypeObject
fn type_object_raw<'py>(py: Python<'py>) -> *mut PyTypeObject
Returns the PyTypeObject instance for this type.
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_type_of_bound(object: &Bound<'_, PyAny>) -> bool
fn is_type_of_bound(object: &Bound<'_, PyAny>) -> bool
👎Deprecated since 0.23.0: renamed to
PyTypeInfo::is_type_of
Deprecated name for
PyTypeInfo::is_type_of
.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 PyArrayDescr
Auto Trait Implementations§
impl !Freeze for PyArrayDescr
impl !RefUnwindSafe for PyArrayDescr
impl !Send for PyArrayDescr
impl !Sync for PyArrayDescr
impl Unpin for PyArrayDescr
impl UnwindSafe for PyArrayDescr
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