metrics_generic/
request_handler.rs

1// Copyright 2022 The ChromiumOS Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use base::RecvTube;
6
7#[derive(Default)]
8pub struct MetricsRequestHandler;
9impl MetricsRequestHandler {
10    pub fn new() -> Self {
11        MetricsRequestHandler
12    }
13    pub fn handle_tube_readable(&self, _tube: &RecvTube) {
14        unreachable!();
15    }
16    pub fn shutdown(&self) {}
17}