//! ONNX protobuf decoding (ยง19.1).
//!
//! The `onnx` submodule contains the `prost`-generated types compiled from the
//! vendored `proto/onnx.proto3` (see `build.rs`). [`decode_model`] parses a
//! serialized `ModelProto` from bytes.
use Message;
use crateLoaderError;
/// The `prost`-generated ONNX protobuf types (package `onnx`).
pub use ModelProto;
/// Decode a [`ModelProto`] from serialized protobuf bytes.