1// Copyright 2023 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.
45use thiserror::Error;
67pub mod allocations_table_v1;
8mod memory_mapped_vmo;
9pub mod resources_table_v1;
10pub mod stack_trace_compression;
1112#[derive(Debug, Eq, Error, PartialEq)]
13pub enum Error {
14#[error("The provided memory region is too small")]
15BufferTooSmall,
16#[error("The provided memory region is too big")]
17BufferTooBig,
18#[error("Operation failed due to lack of space")]
19OutOfSpace,
20#[error("Operation failed because the provided input is not valid")]
21InvalidInput,
22#[error("System call failed: {}", .0)]
23SyscallFailed(#[from] zx::Status),
24}