A Rust library to interact with Switchboard V2'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 switchboardaggregator::getaggregatorresult; use switchboardaggregator::decimal::SwitchboardDecimal; use std::convert::TryInto;
let aggregatorresult: SwitchboardDecimal = switchboardaggregator::getaggregatorresult( switchboard_feed // &AccountInfo )?;
let decimal: f64 = (&aggregatorresult).tryinto().unwrap(); ```