#[repr(u32)]pub enum IPLLogLevel {
IPL_LOGLEVEL_INFO = 0,
IPL_LOGLEVEL_WARNING = 1,
IPL_LOGLEVEL_ERROR = 2,
IPL_LOGLEVEL_DEBUG = 3,
}Expand description
Severity levels of log messages generated by Steam Audio.
Variants§
IPL_LOGLEVEL_INFO = 0
< A normal, informational message.
IPL_LOGLEVEL_WARNING = 1
< A warning. The operation that generated this message may not work as expected.
IPL_LOGLEVEL_ERROR = 2
< An error. The operation that generated this message failed.
IPL_LOGLEVEL_DEBUG = 3
< A detailed message intended for debugging purposes only.
Trait Implementations§
Source§impl Clone for IPLLogLevel
impl Clone for IPLLogLevel
Source§fn clone(&self) -> IPLLogLevel
fn clone(&self) -> IPLLogLevel
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 IPLLogLevel
impl Debug for IPLLogLevel
Source§impl Hash for IPLLogLevel
impl Hash for IPLLogLevel
Source§impl PartialEq for IPLLogLevel
impl PartialEq for IPLLogLevel
impl Copy for IPLLogLevel
impl Eq for IPLLogLevel
impl StructuralPartialEq for IPLLogLevel
Auto Trait Implementations§
impl Freeze for IPLLogLevel
impl RefUnwindSafe for IPLLogLevel
impl Send for IPLLogLevel
impl Sync for IPLLogLevel
impl Unpin for IPLLogLevel
impl UnwindSafe for IPLLogLevel
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