fidl_next_protocol/
service.rs

1// Copyright 2024 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 core::error::Error;
6
7use crate::Transport;
8
9/// An instance of a FIDL service.
10pub trait ServiceInstance {
11    /// The error type for the instance.
12    type Error: Error + Send + Sync + 'static;
13
14    /// The transport type created by connecting to a member.
15    type Transport: Transport;
16
17    /// Attempts to connect the given member.
18    fn connect(&mut self, member: &str) -> Result<Self::Transport, Self::Error>;
19}