This is a rust crate for working with the rick and morty api here. Primarily a learning (rust) experience for me. Contributions welcome! Install crate
- Get a single character by id:
use rick_and_morty as rm;
async fn get_character() -> () {
let c = rm::character::get(1).await;
match c {
Ok(res) => println!("{:?}", res),
Err(e) => println!("{:?}", e),
}
}
- Get all characters
use rick_and_morty as rm;
async fn get_characters() -> () {
let c = rm::character::get_all().await;
match c {
Ok(res) => println!("{:?}", res),
Err(e) => println!("{:?}", e),
}
}
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.