Enum image::DecodingResult
[−]
[src]
pub enum DecodingResult {
U8(Vec<u8>),
U16(Vec<u16>),
}Result of a decoding process
Variants
U8(Vec<u8>)A vector of unsigned bytes
U16(Vec<u16>)A vector of unsigned words
Trait Implementations
impl Into<DecodingResult> for Vec<u8>[src]
fn into(self) -> DecodingResult[src]
Performs the conversion.
impl Into<DecodingResult> for Vec<u16>[src]
fn into(self) -> DecodingResult[src]
Performs the conversion.