#[repr(C)]pub struct OrtEnvCreationOptions {
pub version: u32,
pub logging_severity_level: i32,
pub log_id: *const c_char,
pub custom_logging_function: Option<OrtLoggingFunction>,
pub custom_logging_param: *mut c_void,
pub threading_options: *const OrtThreadingOptions,
pub config_entries: *const OrtKeyValuePairs,
}Fields§
§version: u32§logging_severity_level: i32§log_id: *const c_char§custom_logging_function: Option<OrtLoggingFunction>§custom_logging_param: *mut c_void§threading_options: *const OrtThreadingOptions§config_entries: *const OrtKeyValuePairsTrait Implementations§
Source§impl Clone for OrtEnvCreationOptions
impl Clone for OrtEnvCreationOptions
Source§fn clone(&self) -> OrtEnvCreationOptions
fn clone(&self) -> OrtEnvCreationOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OrtEnvCreationOptions
impl Debug for OrtEnvCreationOptions
Source§impl Default for OrtEnvCreationOptions
impl Default for OrtEnvCreationOptions
Source§fn default() -> OrtEnvCreationOptions
fn default() -> OrtEnvCreationOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OrtEnvCreationOptions
impl RefUnwindSafe for OrtEnvCreationOptions
impl !Send for OrtEnvCreationOptions
impl !Sync for OrtEnvCreationOptions
impl Unpin for OrtEnvCreationOptions
impl UnsafeUnpin for OrtEnvCreationOptions
impl UnwindSafe for OrtEnvCreationOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more