hornbill_apilib 0.2.0

rust api library for connecting to a hornbill instance
Documentation

Hornbill rust api library

hornbill_apilib

This is an initial commit of the library. It it still a work in progress and some API's might change to make them more effcient.

This library can be used to build tools to communicate with your hornbill instance using the xmlmc endpoint. The documentation for this endpoint can be found here

Documentation

hornbill_apilib.

Usage

Add this to your Cargo.toml:

[dependencies]
hornbill_apilib = "0.2"

Examples

These are examples for using this library:

simple. - quick real world use of the library

logon. - how to logon either with userLogon or setting an apikey.

jsonresponse. - Requesting a json response back from the server and parsing it using serde_json.

responseheaders. - If you need to see the response headers from api calls.

multithreaded. - WIP, might split this into standard threaded and a tokio example.