This is a library for interacting with the AD4M executor / agent, analogous to https://www.npmjs.com/package/@perspect3vism/ad4m.
```Rust use ad4m_client::Ad4mClient;
let executorurl = "http://localhost:4000".tostring(); let captoken = readcapabilitytokenfrom_file();
let ad4mclient = Ad4mClient::new(executorurl, cap_token);
println!("{:?}", ad4m_client.agent.me()?); ```
Until documentation will be added, have a look at the AD4M cli code for a full usage example: https://github.com/perspect3vism/ad4m/tree/main/cli.