fdomain_client/fidl_next/has_executor.rs
1// Copyright 2025 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5use crate::Channel;
6use fidl_next::fuchsia_async::FuchsiaAsync;
7
8impl fidl_next::RunsTransport<crate::Channel> for FuchsiaAsync {}
9
10impl fidl_next::HasExecutor for Channel {
11 type Executor = FuchsiaAsync;
12
13 fn executor(&self) -> Self::Executor {
14 FuchsiaAsync
15 }
16}