zx/profile.rs
1// Copyright 2020 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
5//! Type-safe bindings for Zircon profile objects.
6
7use crate::{AsHandleRef, Handle, HandleBased, HandleRef};
8
9/// An object representing a Zircon
10/// [profile](https://fuchsia.dev/fuchsia-src/concepts/objects/profile.md).
11///
12/// As essentially a subtype of `Handle`, it can be freely interconverted.
13#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
14#[repr(transparent)]
15pub struct Profile(Handle);
16impl_handle_based!(Profile);
17
18// TODO: This is just a stub to enable these handles to be provided over FIDL. We still need to
19// implement the rest of the bindings here.