myust 1.0.9

A rich and hybrid mystb.in API wrapper for Rust 🦀
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "sync")]
#[test]
fn get_paste_sync() {
    let client = myust::SyncClient::new();
    let paste = client
        .get_paste(|p| p.id("GarminDosageExists").password("myust"))
        .unwrap();
    println!("{paste:#?}");
}