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 fc3d1a1 commit 6524450Copy full SHA for 6524450
onnxruntime/src/session.rs
@@ -291,9 +291,9 @@ impl SessionBuilder {
291
/// Type storing the session information, built from an [`Environment`](environment/struct.Environment.html)
292
#[derive(Debug)]
293
pub struct Session {
294
- session_ptr: *mut sys::OrtSession,
+ pub(crate) session_ptr: *mut sys::OrtSession,
295
allocator_ptr: *mut sys::OrtAllocator,
296
- memory_info: MemoryInfo,
+ pub(crate) memory_info: MemoryInfo,
297
/// Information about the ONNX's inputs as stored in loaded file
298
pub inputs: Vec<Input>,
299
/// Information about the ONNX's outputs as stored in loaded file
0 commit comments