image4 0.8.2

A no_std-friendly library for parsing and generation of Image4 images written in pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Contains types used to parse and generate Image4 payload files (aka IM4P).

mod borrowed;
pub mod compr_info;
#[cfg(any(feature = "alloc", test))]
mod owned;
mod props;

pub use borrowed::PayloadRef;
pub use compr_info::ComprInfo;
#[cfg(any(feature = "alloc", test))]
pub use owned::Payload;
#[cfg(any(feature = "alloc", test))]
pub use props::PayloadProps;
pub use props::PayloadPropsRef;

#[cfg(test)]
mod tests;