Currently the get method on future-trailers returns option<result<trailers, error>>, where reading no trailers in a request is indicated by the trailers result being empty. We should instead return option<result<option<trailers>, error>> so that we can indicate success, with no trailers.
Currently the
getmethod onfuture-trailersreturnsoption<result<trailers, error>>, where reading no trailers in a request is indicated by thetrailersresult being empty. We should instead returnoption<result<option<trailers>, error>>so that we can indicate success, with no trailers.