odpic_sys/
blocking.rs

1//! functions which may be blocked by network-roundtrips
2//!
3//! When the `separate_blocking` feature is enabled, functions whose column
4//! `Round-Trips?` value in [ODPI-C Function Round-Trips] is `Yes` or `Maybe`
5//! are in this module.
6//!
7//! There are no functions when the feature is disabled.
8//!
9//! [ODPI-C Function Round-Trips]: https://odpi-c.readthedocs.io/en/latest/user_guide/round_trips.html
10
11#[cfg(feature = "separate_blocking")]
12use crate::*;
13#[cfg(feature = "separate_blocking")]
14include!("bindings_blocking.rs");