pub trait IntoTValue {
    // Required method
    fn into_tvalue(self) -> TValue;
}

Required Methods§

fn into_tvalue(self) -> TValue

Implementors§

§

impl IntoTValue for Arc<Tensor>

§

impl IntoTValue for Tensor

§

impl<D, T> IntoTValue for ArrayBase<OwnedRepr<T>, D>where D: Dimension, T: Datum,