#[repr(C)]pub enum VpxCodecError {
VpxCodecOk = 0,
VpxCodecError = 1,
VpxCodecMemError = 2,
VpxCodecAbiMismatch = 3,
VpxCodecIncapable = 4,
VpxCodecUnsupBitstream = 5,
VpxCodecUnsupFeature = 6,
VpxCodecCorruptFrame = 7,
VpxCodecInvalidParam = 8,
VpxCodecListEnd = 9,
}Variants§
VpxCodecOk = 0
Operation completed without error
VpxCodecError = 1
Unspecified error
VpxCodecMemError = 2
Memory operation failed
VpxCodecAbiMismatch = 3
ABI version mismatch
VpxCodecIncapable = 4
Algorithm does not have required capability
VpxCodecUnsupBitstream = 5
The given bitstream is not supported
VpxCodecUnsupFeature = 6
Encoded bitstream uses an unsupported feature
VpxCodecCorruptFrame = 7
The coded data for this stream is corrupt or incomplete
VpxCodecInvalidParam = 8
An application-supplied parameter is not valid
VpxCodecListEnd = 9
An iterator reached the end of list
Trait Implementations§
Source§impl Clone for VpxCodecError
impl Clone for VpxCodecError
Source§fn clone(&self) -> VpxCodecError
fn clone(&self) -> VpxCodecError
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 VpxCodecError
impl Debug for VpxCodecError
impl Copy for VpxCodecError
Auto Trait Implementations§
impl Freeze for VpxCodecError
impl RefUnwindSafe for VpxCodecError
impl Send for VpxCodecError
impl Sync for VpxCodecError
impl Unpin for VpxCodecError
impl UnwindSafe for VpxCodecError
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