rusty_cl/
lib.rs

1#![deny(missing_docs)]
2#![doc = "Rust(y) binding for OpenCL"]
3
4/// Module containing all the native function declarations.
5pub(crate) mod native;
6
7/// Results and error codes.
8pub mod result;
9
10/// Primitive types.
11pub mod types;
12
13/// Platform related functions and types.
14pub mod platform;
15
16/// Device related functions and types.
17pub mod device;