#[repr(u32)]pub enum IPLerror {
IPL_STATUS_SUCCESS = 0,
IPL_STATUS_FAILURE = 1,
IPL_STATUS_OUTOFMEMORY = 2,
IPL_STATUS_INITIALIZATION = 3,
}Expand description
Status codes returned by Steam Audio API functions.
Variants§
IPL_STATUS_SUCCESS = 0
< The operation completed successfully.
IPL_STATUS_FAILURE = 1
< An unspecified error occurred.
IPL_STATUS_OUTOFMEMORY = 2
< The system ran out of memory.
IPL_STATUS_INITIALIZATION = 3
< An error occurred while initializing an external dependency.
Trait Implementations§
impl Copy for IPLerror
impl Eq for IPLerror
impl StructuralPartialEq for IPLerror
Auto Trait Implementations§
impl Freeze for IPLerror
impl RefUnwindSafe for IPLerror
impl Send for IPLerror
impl Sync for IPLerror
impl Unpin for IPLerror
impl UnwindSafe for IPLerror
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