#ifndef ABSL_PROFILING_HASHTABLE_H_
#define ABSL_PROFILING_HASHTABLE_H_
#include <cstdint>
#include <string>
#include "absl/container/internal/hashtablez_sampler.h"
#include "absl/status/statusor.h"
#include "absl/strings/string_view.h"
#include "absl/time/time.h"
namespace absl {
ABSL_NAMESPACE_BEGIN
absl::StatusOr<std::string> MarshalHashtableProfile();
namespace debugging_internal {
absl::StatusOr<std::string> MarshalHashtableProfile(
container_internal::HashtablezSampler& sampler, absl::Time now);
} ABSL_NAMESPACE_END
}
#endif