pub trait ApplyTensorTransforms<'a> {
    // Required method
    fn apply(
        &self,
        transforms: TensorTransforms<'a>,
        device: &Device,
    ) -> Result<Tensor>;
}Expand description
Application of transforms to the Self type.
pub trait ApplyTensorTransforms<'a> {
    // Required method
    fn apply(
        &self,
        transforms: TensorTransforms<'a>,
        device: &Device,
    ) -> Result<Tensor>;
}Application of transforms to the Self type.