#[repr(i32)]pub enum VP8StatusCode {
VP8_STATUS_OK = 0,
VP8_STATUS_OUT_OF_MEMORY = 1,
VP8_STATUS_INVALID_PARAM = 2,
VP8_STATUS_BITSTREAM_ERROR = 3,
VP8_STATUS_UNSUPPORTED_FEATURE = 4,
VP8_STATUS_SUSPENDED = 5,
VP8_STATUS_USER_ABORT = 6,
VP8_STATUS_NOT_ENOUGH_DATA = 7,
}
Variants§
VP8_STATUS_OK = 0
VP8_STATUS_OUT_OF_MEMORY = 1
VP8_STATUS_INVALID_PARAM = 2
VP8_STATUS_BITSTREAM_ERROR = 3
VP8_STATUS_UNSUPPORTED_FEATURE = 4
VP8_STATUS_SUSPENDED = 5
VP8_STATUS_USER_ABORT = 6
VP8_STATUS_NOT_ENOUGH_DATA = 7
Trait Implementations§
Source§impl Clone for VP8StatusCode
impl Clone for VP8StatusCode
Source§fn clone(&self) -> VP8StatusCode
fn clone(&self) -> VP8StatusCode
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 VP8StatusCode
impl Debug for VP8StatusCode
Source§impl Hash for VP8StatusCode
impl Hash for VP8StatusCode
Source§impl PartialEq for VP8StatusCode
impl PartialEq for VP8StatusCode
impl Copy for VP8StatusCode
impl Eq for VP8StatusCode
impl StructuralPartialEq for VP8StatusCode
Auto Trait Implementations§
impl Freeze for VP8StatusCode
impl RefUnwindSafe for VP8StatusCode
impl Send for VP8StatusCode
impl Sync for VP8StatusCode
impl Unpin for VP8StatusCode
impl UnwindSafe for VP8StatusCode
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