armour-core 0.1.7

Core types for armour ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Dynamic runtime values matching [`Typ`](crate::Typ).
//!
//! Feature-gated under `dyn-value`. Used for runtime-decoding rapira-encoded
//! (or zerocopy, for flat types) bytes into a structured, JSON-serializable
//! tree when static types are not available (e.g., CLI tools, inspection).

pub mod decode;
pub mod error;
pub mod value;

pub use decode::decode;
pub use error::DecodeError;
pub use value::{DynValue, StructValue};