pub trait TensorPersist: Sized {
    type Persistent;

    fn is_persistent(&self) -> bool;

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

Methods to access this Tensor as a persistent type.

Required Associated Types§

Required Methods§

Provided Methods§

Implementors§