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