Struct PyArrayLike

Source
pub struct PyArrayLike<'py, T, D>(/* private fields */)
where
    T: Element,
    D: Dimension;
Expand description

To be used for extracting an array from any Python object which can be regarded as an array of type T and dimension D in a reasonable way.

Implementations§

Source§

impl<'py, T, D> PyArrayLike<'py, T, D>
where T: Element, D: Dimension,

Source

pub fn into_owned_array(self) -> Array<T, D>

Consumes self and moves its data into an owned array.

Source

pub fn into_pyarray(self) -> PyReadonlyArray<'py, T, D>

Consumes self and moves its data into a numpy array.

Source

pub fn view(&self) -> ArrayView<'_, T, D>

Return a read-only view of the array.

Trait Implementations§

Source§

impl<'py, T, D> Debug for PyArrayLike<'py, T, D>
where T: Element + Debug, D: Dimension + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<T, D> From<PyArrayLike<'_, T, D>> for Array<T, D>
where T: Element, D: Dimension,

Source§

fn from(value: PyArrayLike<'_, T, D>) -> Self

Converts to this type from the input type.
Source§

impl<'py, T, D> From<PyArrayLike<'py, T, D>> for PyReadonlyArray<'py, T, D>
where T: Element, D: Dimension,

Source§

fn from(value: PyArrayLike<'py, T, D>) -> Self

Converts to this type from the input type.
Source§

impl<'py, T, D> FromPyObject<'py> for PyArrayLike<'py, T, D>
where T: Clone + Element + FromPyObject<'py> + 'static, D: Dimension + 'static,

Source§

fn extract_bound(ob: &Bound<'py, PyAny>) -> PyResult<Self>

Extracts Self from the bound smart pointer obj. Read more

Auto Trait Implementations§

§

impl<'py, T, D> Freeze for PyArrayLike<'py, T, D>
where D: Freeze,

§

impl<'py, T, D> !RefUnwindSafe for PyArrayLike<'py, T, D>

§

impl<'py, T, D> !Send for PyArrayLike<'py, T, D>

§

impl<'py, T, D> !Sync for PyArrayLike<'py, T, D>

§

impl<'py, T, D> Unpin for PyArrayLike<'py, T, D>
where D: Unpin, T: Unpin,

§

impl<'py, T, D> UnwindSafe for PyArrayLike<'py, T, D>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<'py, T> FromPyObjectBound<'_, 'py> for T
where T: FromPyObject<'py>,

Source§

fn from_py_object_bound(ob: Borrowed<'_, 'py, PyAny>) -> Result<T, PyErr>

Extracts Self from the bound smart pointer obj. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.