burn-import 0.14.0

Library for importing datamodels into the Burn framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// The graph module.
pub mod graph;

pub(crate) mod node;

mod codegen;
mod imports;
mod scope;
mod ty;

pub(crate) use codegen::*;
pub(crate) use imports::*;
pub(crate) use scope::*;
pub(crate) use ty::*;