We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7e0e5d commit 52f5767Copy full SHA for 52f5767
crates/openvino/src/network.rs
@@ -13,6 +13,8 @@ use openvino_sys::{
13
};
14
use std::ffi::CStr;
15
16
+/// See
17
+/// [CNNNetwork](https://docs.openvinotoolkit.org/latest/classInferenceEngine_1_1CNNNetwork.html).
18
pub struct CNNNetwork {
19
pub(crate) instance: *mut ie_network_t,
20
}
@@ -92,6 +94,8 @@ impl CNNNetwork {
92
94
93
95
96
97
98
+/// [ExecutableNetwork](https://docs.openvinotoolkit.org/latest/classInferenceEngine_1_1ExecutableNetwork.html).
99
pub struct ExecutableNetwork {
100
pub(crate) instance: *mut ie_executable_network_t,
101
0 commit comments