dare 0.0.3

daring flexible data representation
Documentation
  • Coverage
  • 0%
    0 out of 31 items documented0 out of 21 items with examples
  • Size
  • Source code size: 15.45 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 419.71 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • theMackabu

Dare

A flexible Value enum implementation in Rust, supporting various data types and providing type-safe operations.

Features

  • Supports multiple data types: null, boolean, float, integer, string, array.
  • Easy conversion with From trait implementations
  • Type-checking and accessor methods

Usage

use dare::Value;

let number = Value::from(42);
let string = Value::from("Hello");
let array = Value::from(vec![Value::from(1), Value::from(2)]);

assert!(number.is_number());
assert_eq!(string.as_string(), Some("Hello".to_string()));

println!("{}", array); // Outputs: [1, 2]