pub trait DataQueryError: Error {
    fn ref_id(self) -> String;
}
Expand description

Error supertrait used in DataService::query_data.

Required Methods

Return the ref_id of the incoming query to which this error corresponds.

This allows the SDK to align queries up with any failed requests.

Implementations on Foreign Types

Implementors