Development Documentation (main branch) - For stable release docs, see docs.rs/eidetica

any

Macro any 

macro_rules! any {
    ($($any:tt)+) => { ... };
}
Expand description

Construct a lib0 Any value literal.

ยงExamples


use yrs::any;

let value = any!({
  "code": 200,
  "success": true,
  "payload": {
    "features": [
      "lib0",
      true
    ]
  }
});