blob: 253087205a4683ae0f4091d9649451b235410b5c [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! Type-safe bindings for Zircon logs.
use crate::{AsHandleRef, HandleBased, Handle, HandleRef};
/// An object representing a Zircon log.
///
/// As essentially a subtype of `Handle`, it can be freely interconverted.
#[derive(Debug, Eq, PartialEq)]
#[repr(transparent)]
pub struct Log(Handle);
impl_handle_based!(Log);