Struct tract_core::internal::tract_ndarray::StrideShape   
source · [−]pub struct StrideShape<D> { /* private fields */ }Expand description
An array shape of n dimensions in c-order, f-order or custom strides.
Implementations
Trait Implementations
sourceimpl<D> Clone for StrideShape<D> where
    D: Clone, 
 
impl<D> Clone for StrideShape<D> where
    D: Clone, 
sourcefn clone(&self) -> StrideShape<D>
 
fn clone(&self) -> StrideShape<D>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<D> Debug for StrideShape<D> where
    D: Debug, 
 
impl<D> Debug for StrideShape<D> where
    D: Debug, 
sourceimpl<T, D> From<T> for StrideShape<D> where
    D: Dimension,
    T: ShapeBuilder<Dim = D>, 
 
impl<T, D> From<T> for StrideShape<D> where
    D: Dimension,
    T: ShapeBuilder<Dim = D>, 
sourcefn from(value: T) -> StrideShape<D>
 
fn from(value: T) -> StrideShape<D>
Converts to this type from the input type.
impl<D> Copy for StrideShape<D> where
    D: Copy, 
Auto Trait Implementations
impl<D> RefUnwindSafe for StrideShape<D> where
    D: RefUnwindSafe, 
impl<D> Send for StrideShape<D> where
    D: Send, 
impl<D> Sync for StrideShape<D> where
    D: Sync, 
impl<D> Unpin for StrideShape<D> where
    D: Unpin, 
impl<D> UnwindSafe for StrideShape<D> where
    D: UnwindSafe, 
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Downcast for T where
    T: Any, 
 
impl<T> Downcast for T where
    T: Any, 
sourcefn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘNotable traits for Box<R, Global>impl<R> Read for Box<R, Global> where
    R: Read + ?Sized, impl<W> Write for Box<W, Global> where
    W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
    F: Future + Unpin + ?Sized,
    A: Allocator + 'static,     type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
    I: Iterator + ?Sized,
    A: Allocator,     type Item = <I as Iterator>::Item;
 
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘNotable traits for Box<R, Global>impl<R> Read for Box<R, Global> where
    R: Read + ?Sized, impl<W> Write for Box<W, Global> where
    W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
    F: Future + Unpin + ?Sized,
    A: Allocator + 'static,     type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
    I: Iterator + ?Sized,
    A: Allocator,     type Item = <I as Iterator>::Item;
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
sourcefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
 
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
sourcefn as_any(&self) -> &(dyn Any + 'static)
 
fn as_any(&self) -> &(dyn Any + 'static)
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s. Read more
sourcefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
 
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s. Read more