ext 0.0.3

A Rust extension library.
1
2
3
4
5
6
use core::fmt::Debug;
use std::error::Error;

use crate::no_std::algebraic::product::GErr;

impl<T: Debug> Error for GErr<T> {}