pub trait TensorList {
// Required methods
fn into_tensors(self) -> Vec<Tensor>;
fn as_tensors(&self) -> &[Tensor];
}pub trait TensorList {
// Required methods
fn into_tensors(self) -> Vec<Tensor>;
fn as_tensors(&self) -> &[Tensor];
}