nnapi/lib.rs
1//! # Safe and abstracted Rust bindings for Android Neural Networks API
2
3mod burst;
4mod compilation;
5mod error;
6mod event;
7mod execution;
8mod model;
9mod operand;
10
11pub use burst::*;
12pub use compilation::*;
13pub use error::*;
14pub use event::*;
15pub use execution::*;
16pub use model::*;
17pub use operand::*;
18pub mod nnapi_sys {
19 pub use ::nnapi_sys::*;
20}