Skip to content

Commit 52f5767

Browse files
committed
Link to OpenVINO documentation for CNNNetwork/ExecutableNetwork
1 parent b7e0e5d commit 52f5767

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/openvino/src/network.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ use openvino_sys::{
1313
};
1414
use std::ffi::CStr;
1515

16+
/// See
17+
/// [CNNNetwork](https://docs.openvinotoolkit.org/latest/classInferenceEngine_1_1CNNNetwork.html).
1618
pub struct CNNNetwork {
1719
pub(crate) instance: *mut ie_network_t,
1820
}
@@ -92,6 +94,8 @@ impl CNNNetwork {
9294
}
9395
}
9496

97+
/// See
98+
/// [ExecutableNetwork](https://docs.openvinotoolkit.org/latest/classInferenceEngine_1_1ExecutableNetwork.html).
9599
pub struct ExecutableNetwork {
96100
pub(crate) instance: *mut ie_executable_network_t,
97101
}

0 commit comments

Comments
 (0)