logo
pub trait AsForeignCanonicalInterface<T>: AsForeignNonCanonicalInterface<T> + Copy where
    T: Copy
{ fn as_foreign(&self) -> &T; fn as_foreign_mut(&mut self) -> &mut T; }
Expand description

Trait to interpret canonical math data structures of other math libs as their analogs a math lib of choice to use operations of the library..

Required Methods

Interpret this data structure as analog of a math lib of choice to use its operations.

Interpret this data structure mutably as analog of a math lib of choice to use its operations.

Implementors