mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 13:16:44 +01:00
* crates re-organisation * fixed typo in layout & added test for vmp_apply * updated dependencies
7 lines
142 B
Rust
7 lines
142 B
Rust
use crate::layouts::Backend;
|
|
|
|
/// Instantiate a new [crate::layouts::Module].
|
|
pub trait ModuleNew<B: Backend> {
|
|
fn new(n: u64) -> Self;
|
|
}
|