ray-debug 0.0.1

Rust adapter for the Spatie Ray debugging tool (https://spatie.be/products/ray)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# ray-debug

A Rust adapter for Spatie's fantastic debugging tool, [Ray](https://spatie.be/products/ray).

**This is a work in progress, so breaking changes are likely to occur!**

Only basic debugging is implemented at the moment, so you can use it like:

```rust
use ray_debug::{ray, ray_log};

// ...
fn do_stuff() {
    // ...
    ray(&some_struct);
    ray_log("foo");
}
```