A pixiv AppAPI bindings in Rust.
```rust use pixivcrab::{AppAPI, AuthMethod}; use reqwest::Proxy;
async fn main() { let clientbuilder = reqwest::Client::builder().proxy(Proxy::http("http://127.0.0.1:8080").unwrap()); let api = AppAPI::new( AuthMethod::RefreshToken("refreshtoken12345".tostring()), "en", clientbuilder, ) .unwrap(); let mut pager = api.illust_bookmarks("123456", false); while let Some(r) = pager.next().await.unwrap() { for i in r.illusts { println!("{} {:?}", i.title, i.tags); } } } ```