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 7377eb5 commit 67a525eCopy full SHA for 67a525e
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