z_osmf 0.13.5

The Rust z/OSMF Client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[path = "_setup/mod.rs"]
mod _setup;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let zosmf = _setup::get_zosmf().await?;

    let variables = zosmf.system_variables().list().build().await?;

    println!("{:#?}", variables);

    let symbols = zosmf.system_variables().symbols().build().await?;

    println!("{:#?}", symbols);

    Ok(())
}