Crate howto[][src]

howto

Instant coding answers with Google and StackOverflow. Inspired by gleitz/howdoi.

Usage

let answers = howto::howto("file io rust");

for answer in answers.filter_map(Result::ok) {
    println!("Answer from {}\n{}", answer.link, answer.instruction);
}

Structs

Answer

Struct containing the answer of given query.

Answers

Blocking iterator that gets answers from Stream.

Error

The Error type, which can contain any failure.

Functions

howto

Query function. Give query to this fuction ans thats it. Google and StackOverflow do the rest.