pub trait ToGrid<T, Idx, const N: usize>where
Idx: Integer,{
type Output: IGrid<T, Idx, N>;
// Required method
fn to_grid(self) -> Self::Output;
}pub trait ToGrid<T, Idx, const N: usize>where
Idx: Integer,{
type Output: IGrid<T, Idx, N>;
// Required method
fn to_grid(self) -> Self::Output;
}