splatoon3-rs 0.1.1

スプラトゥーン3のステージ情報を取得するクレートです
Documentation
  • Coverage
  • 0%
    0 out of 32 items documented0 out of 17 items with examples
  • Size
  • Source code size: 45.47 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.18 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 59s Average build duration of successful builds.
  • all releases: 1m 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • TaroYamada1997

利用する

利用するために、クレートを追加してください。

$ cargo add tokio

サンプル

use splatoon3_rs::client::SplaClient;

#[tokio::main]
async fn main() {
    let client = SplaClient::new().unwrap();
    let res = client.get_next_bankara_open_stages().await.unwrap();

    println!("{:?}", res)
}