Crate resa[][src]

General

A rust written REST search API for error searching.

Example Usage

An example usage of this crate by using the StackOverflow REST API

extern crate resa;
use resa::*;
let result = resa::stackoverflow::StackOverflow::search("Compiler Error");

Test

Try the API by using the binary resa on following example:

This example is not tested
fn main() {
    let v = vec![1, 2, 3];
    let v2 = v;
    println!("v[0] is: {}", v[0]);
    const C: i32 = 2;
    static CONST_REF: &'static mut i32 = &mut C;
   }
resa -f -r 3 fail.rs

Modules

stackoverflow

Module for searching errors over StackOverflow platform.

Traits

Solutions