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 switchboard_aggregator::AggregatorAccountData; use std::convert::TryInto;
let feedresult = AggregatorAccountData::new(feedaccountinfo)?.getresult()?;
let decimal: f64 = feedresult.tryinto()?; ```