#include "tensorstore/util/future.h"
template <typename Sink>
  
requires absl::HasAbslStringify<result_type>::value
friend
 void
tensorstore::Future<T>::AbslStringify(Sinksink,
                                      
const Future<T>& future);

Prints a string representation to the sink, which allows formatting using absl::StrFormat, etc. Do not rely on the output format which may change without notice.

Requires:

T has AbslStringify.