|
| PrefetchTileResult (const geo::TileKey &tile, const PrefetchTileNoError &result) |
| Creates the PrefetchTileResult instance if the corresponding response was successful. More...
|
|
| PrefetchTileResult (const geo::TileKey &tile, const client::ApiError &error) |
| Creates the PrefetchTileResult instance if the corresponding response was not successful. More...
|
|
| PrefetchTileResult (const PrefetchTileResult &r) |
| Creates the PrefetchTileResult instance that is a copy of the r parameter. More...
|
|
| PrefetchTileResult (const client::ApiError &error) |
| Creates the ApiResponse instance if the corresponding response was not successful. More...
|
|
| ApiResponse (const ApiResponse< R, client::ApiError, void > &other) |
| Creates the ApiResponse instance from a similar response type without payload. The payload is default initialized. More...
|
|
| ApiResponse (ApiResponse< R, client::ApiError, void > &&other) |
| Creates the ApiResponse instance from a similar response type without payload. The payload is default initialized. More...
|
|
| ApiResponse (const ApiResponse< PrefetchTileNoError, client::ApiError, void > &other, P payload) |
| Creates the ApiResponse instance from a similar response type without payload, and a separate payload. More...
|
|
| ApiResponse (const ApiResponse< R, client::ApiError, U > &other) |
| Creates the ApiResponse instance from a similar request with a payload. More...
|
|
| ApiResponse (ApiResponse< R, client::ApiError, U > &&other) |
| Creates the ApiResponse instance from a similar request with a payload. More...
|
|
| ApiResponse (ResultType result) |
| Creates the ApiResponse instance. More...
|
|
| ApiResponse (ResultType result, P payload) |
| Creates the ApiResponse instance with payload. More...
|
|
| ApiResponse (const ErrorType &error) |
| Creates the ApiResponse instance if the request is not successful. More...
|
|
| ApiResponse (const ErrorType &error, P payload) |
| Creates the ApiResponse instance if the request is not successful. More...
|
|
bool | IsSuccessful () const |
| Checks the status of the request attempt. More...
|
|
const ResultType & | GetResult () const |
| Gets the result of the successfully executed request. More...
|
|
ResultType && | MoveResult () |
| Moves the result of the successfully executed request. More...
|
|
const ErrorType & | GetError () const |
| Gets the error of the unsuccessful request attempt. More...
|
|
| operator bool () const |
| Operator to check the status of the request attempt. More...
|
|
Represents the result of a prefetch operation.
If successful, contains the geo::TileKey
object; otherwise, contains the failure error.