Struct container_broadcast::broadcast::LazyUpdim[][src]

pub struct LazyUpdim<'a, T: Broadcastable<OLDDIM>, const OLDDIM: usize, const DIM: usize> { /* fields omitted */ }

Return type of lazy_updim.

Implementations

impl<'a, T: Broadcastable<OLDDIM>, const OLDDIM: usize, const DIM: usize> LazyUpdim<'a, T, OLDDIM, DIM>[src]

pub fn iter(&self) -> BroadcastIterator<'_, LazyUpdim<'a, T, OLDDIM, DIM>, DIM>

Notable traits for BroadcastIterator<'a, T, DIM>

impl<'a, T: Broadcastable<DIM>, const DIM: usize> Iterator for BroadcastIterator<'a, T, DIM> type Item = T::Element;
[src]

Trait Implementations

impl<'a, T: Broadcastable<OLDDIM>, const OLDDIM: usize, const DIM: usize> Broadcastable<DIM> for LazyUpdim<'a, T, OLDDIM, DIM>[src]

type Element = T::Element

impl<'a, T: Clone + Broadcastable<OLDDIM>, const OLDDIM: usize, const DIM: usize> Clone for LazyUpdim<'a, T, OLDDIM, DIM>[src]

impl<'a, T: Copy + Broadcastable<OLDDIM>, const OLDDIM: usize, const DIM: usize> Copy for LazyUpdim<'a, T, OLDDIM, DIM>[src]

impl<'b, 'a, T: Broadcastable<OLDDIM>, const OLDDIM: usize, const DIM: usize> IntoIterator for &'b LazyUpdim<'a, T, OLDDIM, DIM>[src]

type Item = T::Element

The type of the elements being iterated over.

type IntoIter = BroadcastIterator<'b, LazyUpdim<'a, T, OLDDIM, DIM>, DIM>

Which kind of iterator are we turning this into?

impl<'a, T: Broadcastable<OLDDIM>, const OLDDIM: usize, const DIM: usize> TensorDimension for LazyUpdim<'a, T, OLDDIM, DIM>[src]

impl<'a, T: Broadcastable<OLDDIM>, const OLDDIM: usize, const DIM: usize> TensorSize<DIM> for LazyUpdim<'a, T, OLDDIM, DIM>[src]

Auto Trait Implementations

impl<'a, T, const OLDDIM: usize, const DIM: usize> RefUnwindSafe for LazyUpdim<'a, T, OLDDIM, DIM> where
    T: RefUnwindSafe

impl<'a, T, const OLDDIM: usize, const DIM: usize> Send for LazyUpdim<'a, T, OLDDIM, DIM> where
    T: Sync

impl<'a, T, const OLDDIM: usize, const DIM: usize> Sync for LazyUpdim<'a, T, OLDDIM, DIM> where
    T: Sync

impl<'a, T, const OLDDIM: usize, const DIM: usize> Unpin for LazyUpdim<'a, T, OLDDIM, DIM>

impl<'a, T, const OLDDIM: usize, const DIM: usize> UnwindSafe for LazyUpdim<'a, T, OLDDIM, DIM> where
    T: RefUnwindSafe

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.