Struct extendr_api::prelude::Shape

source ·
pub struct Shape<D> {
    pub(crate) dim: D,
    pub(crate) strides: Strides<Contiguous>,
}
Expand description

A contiguous array shape of n dimensions.

Either c- or f- memory ordered (c a.k.a row major is the default).

Fields§

§dim: D§strides: Strides<Contiguous>

Implementations§

source§

impl<D> Shape<D>
where D: Dimension,

source

pub fn raw_dim(&self) -> &D

Return a reference to the dimension

source

pub fn size(&self) -> usize

Return the size of the shape in number of elements

Trait Implementations§

source§

impl<D> Clone for Shape<D>
where D: Clone,

source§

fn clone(&self) -> Shape<D>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<D> Debug for Shape<D>
where D: Debug,

source§

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

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

impl<D> From<D> for Shape<D>
where D: Dimension,

source§

fn from(dimension: D) -> Shape<D>

Create a Shape from dimension, using the default memory layout.

source§

impl<D> ShapeBuilder for Shape<D>
where D: Dimension,

§

type Dim = D

§

type Strides = D

source§

fn into_shape(self) -> Shape<D>

source§

fn f(self) -> Shape<D>

source§

fn set_f(self, is_f: bool) -> Shape<D>

source§

fn strides(self, st: D) -> StrideShape<D>

source§

impl<D> Copy for Shape<D>
where D: Copy,

Auto Trait Implementations§

§

impl<D> Freeze for Shape<D>
where D: Freeze,

§

impl<D> RefUnwindSafe for Shape<D>
where D: RefUnwindSafe,

§

impl<D> Send for Shape<D>
where D: Send,

§

impl<D> Sync for Shape<D>
where D: Sync,

§

impl<D> Unpin for Shape<D>
where D: Unpin,

§

impl<D> UnwindSafe for Shape<D>
where D: UnwindSafe,

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<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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.