libbmfw 0.1.1

Unpack Blackmagic device firmware (ATEM, Web Presenter, etc.)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::io::Error as IoError;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error(transparent)]
    IoError(#[from] IoError),

    #[error("data parse error: {0}")]
    BinRwError(#[from] binrw::Error),

    #[cfg(test)]
    #[error(transparent)]
    FromHexError(#[from] hex::FromHexError),
}