[][src]Enum raster::error::RasterError

pub enum RasterError {
    Io(IoError),
    PixelOutOfBounds(i32i32),
    InvalidStartIndex(i32),
    InvalidHex,
    HexParse(ParseIntError),
    BlendingImageFallsOutsideCanvas,
    InvalidGamma(f32),
    Decode(ImageFormatString),
    Encode(ImageFormatString),
    UnsupportedFormat(String),
    Unexpected,
}

Enumeration of raster's errors.

Variants

File system read/write errors.

Getting or setting pixels outside of image bounds.

Invalid start index.

Hex format not supported.

Error parsing a hex string.

Blending error.

Invalid gamma parameter.

Error during decoding.

Error during encoding.

Unsupported image format.

Error that does not belong in other variants.

Trait Implementations

impl From<Error> for RasterError
[src]

Convert std::io::Error to RasterError::Io

Performs the conversion.

impl From<DecodingError> for RasterError
[src]

Convert gif::DecodingError to RasterError::Decode

Performs the conversion.

impl From<ImageError> for RasterError
[src]

Convert gif::DecodingError to RasterError::Decode

Performs the conversion.

impl From<DecodingError> for RasterError
[src]

Convert png::DecodingError to RasterError::Decode

Performs the conversion.

impl From<EncodingError> for RasterError
[src]

Convert png::EncodingError to RasterError::Encode

Performs the conversion.

impl Debug for RasterError
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for RasterError

impl Sync for RasterError

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> SetParameter for T
[src]

Sets value as a parameter of self.