Rust Client
Installation
[dependencies]
simulator-client = "0.7"
simulator-api = "0.7" # If you only need the protocol types (e.g. to build a custom client):Examples
Available Slots
let ranges = client.available_ranges().await?;
for r in &ranges {
println!(
"slots {} – {}",
r.bundle_start_slot,
r.max_bundle_end_slot.unwrap_or(0)
);
}Program Overrides
Reads + Writes
Subscriptions
Session Summaries
Last updated