fdomain_client/event_pair.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 crate::handle::handle_type;
6use crate::Handle;
7
8/// An event pair handle in a remote FDomain.
9#[derive(PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
10pub struct Eventpair(pub(crate) Handle);
11handle_type!(Eventpair EVENTPAIR peered);