1// Copyright 2022 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.
45//! Extensions for `fidl_fuchsia_ui_view`.
67use fidl_fuchsia_ui_views::ViewRef;
8use zx::{self as zx, AsHandleRef};
910/// Extension trait for [fidl_fuchsia_ui_view::ViewRef].
11pub trait ViewRefExt {
12/// Returns the koid (kernel object ID) for this `ViewRef`. (This involves a system call.)
13fn get_koid(&self) -> Result<zx::Koid, zx::Status>;
14}
1516impl ViewRefExt for ViewRef {
17fn get_koid(&self) -> Result<zx::Koid, zx::Status> {
18self.reference.as_handle_ref().get_koid()
19 }
20}
2122#[cfg(test)]
23mod tests {
24use super::*;
25use fuchsia_scenic::ViewRefPair;
2627#[test]
28fn smoke_test_get_koid() {
29let ViewRefPair { control_ref: _control_ref, view_ref } =
30 ViewRefPair::new().expect("making ViewRefPair");
3132assert!(view_ref.get_koid().is_ok());
33 }
34}