A Rust library to interact with Switchboard's hosted data feeds.
This package can be used to manage Switchboard data feed account parsing.
Specifically, this package will return the most recent confirmed round result from a provided data feed AccountInfo.
```rust use switchboardprogram; use switchboardprogram::RoundResult; ... let roundresult: RoundResult = switchboardprogram::getaggregatorresult( switchboard_feed // &AccountInfo )?;
// pub struct RoundResult {
// pub numsuccess: Option
```