| 335 | class GcsFileSystem::Impl { |
| 336 | public: |
| 337 | explicit Impl(GcsOptions o) |
| 338 | : options_(std::move(o)), client_(internal::AsGoogleCloudOptions(options_)) {} |
| 339 | |
| 340 | const GcsOptions& options() const { return options_; } |
| 341 |
nothing calls this directly
no test coverage detected