Enum image::DecodingResult [] [src]

pub enum DecodingResult {
    U8(Vec<u8>),
    U16(Vec<u16>),
}

Result of a decoding process

Variants

A vector of unsigned bytes

A vector of unsigned words

Trait Implementations

impl Into<DecodingResult> for Vec<u8>
[src]

[src]

Performs the conversion.

impl Into<DecodingResult> for Vec<u16>
[src]

[src]

Performs the conversion.

impl Debug for DecodingResult
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations