#[repr(u32)]pub enum OrtLoggingLevel {
ORT_LOGGING_LEVEL_VERBOSE = 0,
ORT_LOGGING_LEVEL_INFO = 1,
ORT_LOGGING_LEVEL_WARNING = 2,
ORT_LOGGING_LEVEL_ERROR = 3,
ORT_LOGGING_LEVEL_FATAL = 4,
}
Variants§
ORT_LOGGING_LEVEL_VERBOSE = 0
ORT_LOGGING_LEVEL_INFO = 1
ORT_LOGGING_LEVEL_WARNING = 2
ORT_LOGGING_LEVEL_ERROR = 3
ORT_LOGGING_LEVEL_FATAL = 4
Trait Implementations§
Source§impl Clone for OrtLoggingLevel
impl Clone for OrtLoggingLevel
Source§fn clone(&self) -> OrtLoggingLevel
fn clone(&self) -> OrtLoggingLevel
Returns a copy 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 OrtLoggingLevel
impl Debug for OrtLoggingLevel
Source§impl Hash for OrtLoggingLevel
impl Hash for OrtLoggingLevel
Source§impl PartialEq for OrtLoggingLevel
impl PartialEq for OrtLoggingLevel
impl Copy for OrtLoggingLevel
impl Eq for OrtLoggingLevel
impl StructuralPartialEq for OrtLoggingLevel
Auto Trait Implementations§
impl Freeze for OrtLoggingLevel
impl RefUnwindSafe for OrtLoggingLevel
impl Send for OrtLoggingLevel
impl Sync for OrtLoggingLevel
impl Unpin for OrtLoggingLevel
impl UnwindSafe for OrtLoggingLevel
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