cbor-core 0.7.0

CBOR::Core deterministic encoder/decoder with owned data structures
Documentation
//! Demonstrate how to create `const` values.
//!
//! `const` constructors are available only for scalar variants.

use cbor_core::Value;

const NULL: Value = Value::null();
const BOOL: Value = Value::from_bool(true);
const SIMPLE_VALUE: Value = Value::simple_value(99);
const INTEGER: Value = Value::from_i64(-123);
const FLOAT: Value = Value::from_f32(2.75);
const FLOAT_PAYLOAD: Value = Value::from_payload(123);

fn main() {
    println!("null:          {NULL:?}");
    println!("bool:          {BOOL:?}");
    println!("simple value:  {SIMPLE_VALUE:?}");
    println!("integer:       {INTEGER:?}");
    println!("float:         {FLOAT:?}");
    println!("float payload: {FLOAT_PAYLOAD:?}");
}