// SPDX-License-Identifier: Apache-2.0
// Copyright 2025 The Hyperlight Authors.
use HyperlightPEB;
/// A guest handle holds the `HyperlightPEB` and enables the guest to perform
/// operations like:
/// - calling host functions,
/// - accessing shared input and output buffers,
/// - writing errors,
/// - etc.
///
/// Guests are expected to initialize this and store it. For example, you
/// could store it in a global variable.