Trait MatEl

Source
pub trait MatEl
where Self: Copy + Default,
{ }
Expand description

Trait for indicating that a type can be used as a matrix element.

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.

Implementors§

Source§

impl<T> MatEl for T
where Self: Copy + Default,