pub trait DataReader {
// Required methods
fn get_owned_objects<'life0, 'async_trait>(
&'life0 self,
address: IotaAddress,
object_type: StructTag,
) -> Pin<Box<dyn Future<Output = Result<Vec<ObjectInfo>, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_object_with_options<'life0, 'async_trait>(
&'life0 self,
object_id: ObjectID,
options: IotaObjectDataOptions,
) -> Pin<Box<dyn Future<Output = Result<IotaObjectResponse, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_reference_gas_price<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<u64, Error>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}