1//! This module is to declare API for external tensor objects to rstsr object. 2 3pub trait IntoRSTSR { 4 type RSTSR; 5 fn into_rstsr(self) -> Self::RSTSR; 6}