FullAPI

Trait FullAPI 

Source
pub trait FullAPI<Inp> {
    type Out;

    // Required method
    fn full_f(self) -> Result<Self::Out>;

    // Provided method
    fn full(self) -> Self::Out
       where Self: Sized { ... }
}

Required Associated Types§

Required Methods§

Source

fn full_f(self) -> Result<Self::Out>

Provided Methods§

Source

fn full(self) -> Self::Out
where Self: Sized,

Implementations on Foreign Types§

Source§

impl<T, D> FullAPI<(T, D)> for (Layout<D>, T)
where T: Clone, D: DimAPI,

Source§

impl<T, D> FullAPI<(T, D)> for (D, T, FlagOrder)
where T: Clone, D: DimAPI,

Source§

impl<T, D> FullAPI<(T, D)> for (D, T)
where T: Clone, D: DimAPI,

Source§

impl<T, D, B> FullAPI<(T, D)> for (Layout<D>, T, &B)
where T: Clone, D: DimAPI, B: DeviceAPI<T> + DeviceCreationAnyAPI<T>,

Source§

type Out = TensorBase<Storage<DataOwned<<B as DeviceRawAPI<T>>::Raw>, T, B>, Vec<usize>>

Source§

fn full_f(self) -> Result<Self::Out>

Source§

impl<T, D, B> FullAPI<(T, D)> for (D, T, FlagOrder, &B)
where T: Clone, D: DimAPI, B: DeviceAPI<T> + DeviceCreationAnyAPI<T>,

Source§

type Out = TensorBase<Storage<DataOwned<<B as DeviceRawAPI<T>>::Raw>, T, B>, Vec<usize>>

Source§

fn full_f(self) -> Result<Self::Out>

Source§

impl<T, D, B> FullAPI<(T, D)> for (D, T, &B)
where T: Clone, D: DimAPI, B: DeviceAPI<T> + DeviceCreationAnyAPI<T>,

Source§

type Out = TensorBase<Storage<DataOwned<<B as DeviceRawAPI<T>>::Raw>, T, B>, Vec<usize>>

Source§

fn full_f(self) -> Result<Self::Out>

Implementors§