pub trait MatrixMarketExport<T: MatrixMarketScalar>: SupportedMatrixMarketExport<T> { }
Expand description

A marker trait for sparse matrix types that can be exported to the matrix market format.

This is a sealed trait; it cannot be implemented by external crates. This is done in order to prevent leaking some of the implementation details we currently rely on. We may relax this restriction in the future.

Implementors§