[][src]Struct tract_core::ops::nn::BaseDataShape

pub struct BaseDataShape<D, S> where
    D: DimLike,
    S: AsRef<[D]> + Debug
{ pub fmt: DataFormat, pub shape: S, pub strides: TVec<D>, }

Fields

fmt: DataFormatshape: Sstrides: TVec<D>

Methods

impl<D, S> BaseDataShape<D, S> where
    D: DimLike,
    S: AsRef<[D]> + Debug
[src]

pub fn rank(&self) -> usize[src]

pub fn hw_rank(&self) -> usize[src]

pub fn n_axis(&self) -> usize[src]

pub fn c_axis(&self) -> usize[src]

pub fn h_axis(&self) -> usize[src]

pub fn hw_axes(&self) -> Range<usize>[src]

pub fn n_dim(&self) -> D[src]

pub fn c_dim(&self) -> D[src]

pub fn hw_dims(&self) -> &[D][src]

pub fn n(&self) -> D[src]

pub fn c(&self) -> D[src]

pub fn n_stride(&self) -> D[src]

pub fn hw_strides(&self) -> &[D][src]

pub fn w_stride(&self) -> D[src]

pub fn c_stride(&self) -> D[src]

Trait Implementations

impl<D: PartialEq, S: PartialEq> PartialEq<BaseDataShape<D, S>> for BaseDataShape<D, S> where
    D: DimLike,
    S: AsRef<[D]> + Debug
[src]

impl<D: Clone, S: Clone> Clone for BaseDataShape<D, S> where
    D: DimLike,
    S: AsRef<[D]> + Debug
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<D: Debug, S: Debug> Debug for BaseDataShape<D, S> where
    D: DimLike,
    S: AsRef<[D]> + Debug
[src]

Auto Trait Implementations

impl<D, S> Send for BaseDataShape<D, S> where
    S: Send

impl<D, S> Sync for BaseDataShape<D, S> where
    S: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> Clone for T where
    T: Clone
[src]