[][src]Enum libwebp_sys::WebPEncodingError

#[repr(u32)]pub enum WebPEncodingError {
    VP8_ENC_OK,
    VP8_ENC_ERROR_OUT_OF_MEMORY,
    VP8_ENC_ERROR_BITSTREAM_OUT_OF_MEMORY,
    VP8_ENC_ERROR_NULL_PARAMETER,
    VP8_ENC_ERROR_INVALID_CONFIGURATION,
    VP8_ENC_ERROR_BAD_DIMENSION,
    VP8_ENC_ERROR_PARTITION0_OVERFLOW,
    VP8_ENC_ERROR_PARTITION_OVERFLOW,
    VP8_ENC_ERROR_BAD_WRITE,
    VP8_ENC_ERROR_FILE_TOO_BIG,
    VP8_ENC_ERROR_USER_ABORT,
    VP8_ENC_ERROR_LAST,
}

Variants

VP8_ENC_OK
VP8_ENC_ERROR_OUT_OF_MEMORY
VP8_ENC_ERROR_BITSTREAM_OUT_OF_MEMORY
VP8_ENC_ERROR_NULL_PARAMETER
VP8_ENC_ERROR_INVALID_CONFIGURATION
VP8_ENC_ERROR_BAD_DIMENSION
VP8_ENC_ERROR_PARTITION0_OVERFLOW
VP8_ENC_ERROR_PARTITION_OVERFLOW
VP8_ENC_ERROR_BAD_WRITE
VP8_ENC_ERROR_FILE_TOO_BIG
VP8_ENC_ERROR_USER_ABORT
VP8_ENC_ERROR_LAST

Trait Implementations

impl Clone for WebPEncodingError[src]

impl Copy for WebPEncodingError[src]

impl Debug for WebPEncodingError[src]

impl Eq for WebPEncodingError[src]

impl Hash for WebPEncodingError[src]

impl PartialEq<WebPEncodingError> for WebPEncodingError[src]

impl StructuralEq for WebPEncodingError[src]

impl StructuralPartialEq for WebPEncodingError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.