#[repr(u32)]pub enum LoggingLevel {
Verbose = 0,
Info = 1,
Warning = 2,
Error = 3,
Fatal = 4,
}
Expand description
Logging level of the ONNX Runtime C API
Variants§
Verbose = 0
Verbose log level
Info = 1
Info log level
Warning = 2
Warning log level
Error = 3
Error log level
Fatal = 4
Fatal log level
Trait Implementations§
Source§impl Debug for LoggingLevel
impl Debug for LoggingLevel
Source§impl From<LoggingLevel> for OrtLoggingLevel
impl From<LoggingLevel> for OrtLoggingLevel
Source§fn from(val: LoggingLevel) -> Self
fn from(val: LoggingLevel) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LoggingLevel
impl RefUnwindSafe for LoggingLevel
impl Send for LoggingLevel
impl Sync for LoggingLevel
impl Unpin for LoggingLevel
impl UnwindSafe for LoggingLevel
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