pub trait IntoTensor {
    fn into_tensor(self) -> Tensor;
}
Expand description

Convenient conversion to Tensor.

Required Methods

Convert Self to a Tensor.

May perform a copy

Implementors