Trait MatrixMarketScalar

Source
pub trait MatrixMarketScalar: SupportedMatrixMarketScalar { }
Expand description

A marker trait for supported matrix market scalars.

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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl MatrixMarketScalar for f32

Source§

impl MatrixMarketScalar for f64

Source§

impl MatrixMarketScalar for i8

Source§

impl MatrixMarketScalar for i16

Source§

impl MatrixMarketScalar for i32

Source§

impl MatrixMarketScalar for i64

Source§

impl MatrixMarketScalar for i128

Source§

impl MatrixMarketScalar for ()

Source§

impl MatrixMarketScalar for Complex<f32>

Source§

impl MatrixMarketScalar for Complex<f64>

Implementors§

OSZAR »