pub trait IntoTensor: Sized {
// Required method
fn into_tensor(self) -> Tensor;
}
Expand description
Convenient conversion to Tensor.
Required Methods§
Sourcefn into_tensor(self) -> Tensor
fn into_tensor(self) -> Tensor
Convert Self to a Tensor.
May perform a copy
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.