builtins/
lib.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
5pub mod arguments;
6pub mod cpu_resource;
7pub mod debug_resource;
8pub mod debuglog_resource;
9pub mod energy_info_resource;
10pub mod factory_items;
11pub mod hypervisor_resource;
12pub mod info_resource;
13pub mod iommu_resource;
14#[cfg(target_arch = "x86_64")]
15pub mod ioport_resource;
16pub mod irq_resource;
17pub mod items;
18pub mod kernel_stats;
19pub mod mexec_resource;
20pub mod mmio_resource;
21pub mod msi_resource;
22pub mod power_resource;
23pub mod profile_resource;
24pub mod root_job;
25pub mod sampling_resource;
26#[cfg(target_arch = "aarch64")]
27pub mod smc_resource;
28pub mod stall_resource;
29pub mod tracing_resource;
30pub mod vmex_resource;