fidl_next_bind/
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::marker::PhantomData;
6
7/// A strongly typed service instance.
8#[derive(Debug)]
9#[repr(transparent)]
10pub struct ServiceInstance<I, S> {
11    instance: I,
12    _service: PhantomData<S>,
13}
14
15impl<I, S> ServiceInstance<I, S> {
16    /// Returns a new service instance over the given instance.
17    pub fn from_untyped(instance: I) -> Self {
18        Self { instance, _service: PhantomData }
19    }
20
21    /// Returns the underlying instance.
22    pub fn into_untyped(self) -> I {
23        self.instance
24    }
25
26    /// Returns a reference to the underlying instance.
27    pub fn as_untyped_mut(&mut self) -> &mut I {
28        &mut self.instance
29    }
30}