Rust cat binding.
NB: This crate is mostly created for Nodejs's Native Addons(using neon) currently.
```rust extern crate cat_rs as cat; use cat::logEvent; use cat::CatClient; use cat::CatTransaction;
let mut cat = CatClient::new("test"); cat.init()? let mut tr = CatTransaction::new("foo", "bar")
tr.log("test", "it", "0", ""); tr.complete();
Ok(()) ```
cat.rs:
```rust use cat_rs::{self, CatTransaction}; use neon::prelude::*;
declaretypes! {
pub class JsCatTransaction for CatTransaction {
init(mut ctx) {
let _type = ctx.argument::
method complete(mut ctx) {
let mut this = ctx.this();
let guard = ctx.lock();
{
let mut trans = this.borrow_mut(&guard);
trans.complete();
}
Ok(ctx.undefined().upcast())
}
method log(mut ctx) {
let _type = ctx.argument::<JsString>(0)?.value();
let _name = ctx.argument::<JsString>(0)?.value();
let _stat = ctx.argument::<JsString>(0)?.value();
let _data = ctx.argument::<JsString>(0)?.value();
{
let mut this = ctx.this();
let guard = ctx.lock();
let mut trans = this.borrow_mut(&guard);
trans.log(_type, _name, _stat, _data);
}
Ok(ctx.undefined().upcast())
}
}
} ```
lib.rs
```rust use cat::JsCatTransaction;
registermodule!(mut ctx, {
ctx.exportclass::