pub trait TensorPersist: Sized {
    type Persistent;

    fn as_persistent(self) -> Option<Self::Persistent> { ... }
}
Expand description

Methods to access this Tensor as a persistent type.

Required Associated Types

Provided Methods

Implementors