Struct container_broadcast::broadcast::ReShaped[][src]

pub struct ReShaped<T: Broadcastable<M>, const N: usize, const M: usize> { /* fields omitted */ }

Return type of reshaped.

Trait Implementations

impl<T: Broadcastable<M> + BroadcastReceiver<M>, const N: usize, const M: usize> BroadcastReceiver<N> for ReShaped<T, N, M>[src]

type Element = <T as BroadcastReceiver<M>>::Element

impl<T: Broadcastable<M>, const N: usize, const M: usize> Broadcastable<N> for ReShaped<T, N, M>[src]

type Element = T::Element

impl<T: Clone + Broadcastable<M>, const N: usize, const M: usize> Clone for ReShaped<T, N, M>[src]

impl<T: Debug + Broadcastable<M>, const N: usize, const M: usize> Debug for ReShaped<T, N, M>[src]

impl<T: Eq + Broadcastable<M>, const N: usize, const M: usize> Eq for ReShaped<T, N, M>[src]

impl<'a, T: Broadcastable<M>, const N: usize, const M: usize> IntoIterator for &'a ReShaped<T, N, M>[src]

type Item = T::Element

The type of the elements being iterated over.

type IntoIter = BroadcastIterator<'a, ReShaped<T, N, M>, N>

Which kind of iterator are we turning this into?

impl<T: PartialEq + Broadcastable<M>, const N: usize, const M: usize> PartialEq<ReShaped<T, N, M>> for ReShaped<T, N, M>[src]

impl<T: Broadcastable<M>, const N: usize, const M: usize> StructuralEq for ReShaped<T, N, M>[src]

impl<T: Broadcastable<M>, const N: usize, const M: usize> StructuralPartialEq for ReShaped<T, N, M>[src]

impl<T: Broadcastable<M>, const N: usize, const M: usize> TensorDimension for ReShaped<T, N, M>[src]

impl<T: Broadcastable<M>, const N: usize, const M: usize> TensorSize<N> for ReShaped<T, N, M>[src]

Auto Trait Implementations

impl<T, const N: usize, const M: usize> RefUnwindSafe for ReShaped<T, N, M> where
    T: RefUnwindSafe

impl<T, const N: usize, const M: usize> Send for ReShaped<T, N, M> where
    T: Send

impl<T, const N: usize, const M: usize> Sync for ReShaped<T, N, M> where
    T: Sync

impl<T, const N: usize, const M: usize> Unpin for ReShaped<T, N, M> where
    T: Unpin

impl<T, const N: usize, const M: usize> UnwindSafe for ReShaped<T, N, M> where
    T: UnwindSafe

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.