mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 05:06:44 +01:00
7 lines
152 B
Rust
7 lines
152 B
Rust
use crate::hal::layouts::Backend;
|
|
|
|
/// Instantiate a new [crate::hal::layouts::Module].
|
|
pub trait ModuleNew<B: Backend> {
|
|
fn new(n: u64) -> Self;
|
|
}
|