coreemu-rs

This is a client library to use the gRPC interface of coreemu from rust. All gRPC functions are exposed in their raw form as produced by tonic-build but there are is also a thin (and incomplete) wrapper to make the API a bit more usable.

To use this library add the following dependency to your Cargo.toml:

coreemu = "*"

or just call: cargo add coreemu

Example

The following example connects to the local coreemu instance and prints all node information from the first running instance found.

```rust use coreemu::Client;

[tokio::main]

async fn main() -> Result<(), Box> { let mut client = Client::connect("http://127.0.0.1:50051").await?;

let response = client.get_sessions().await?;

println!("RESPONSE={:?}", response);

let session_id = response[0].id;

let response = client.get_session(session_id).await?.unwrap();

for n in response.nodes {
    if n.name.starts_with("n") {
        println!("RESPONSE={:#?}", n.position.unwrap());
    }
}
Ok(())

} ```