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::attach(|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)?
.cast_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.
Trait Implementations§
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.
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PyTypeCheck for Twhere
T: PyTypeInfo,
impl<T> PyTypeCheck for Twhere
T: PyTypeInfo,
Source§const NAME: &'static str = T::NAME
const NAME: &'static str = T::NAME
👎Deprecated since 0.27.0: Use ::classinfo_object() instead and format the type name at runtime. Note that using built-in cast features is often better than manual PyTypeCheck usage.
Name of self. This is used in error messages, for example.
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.